From d1ff2b1fada3c08610d3d48dfca350c641266e27 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 11 Jan 2024 18:52:33 -0600 Subject: [PATCH] refactor: button props type usage --- web/store/errors.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/store/errors.ts b/web/store/errors.ts index 38976f238..b7b47439b 100644 --- a/web/store/errors.ts +++ b/web/store/errors.ts @@ -1,5 +1,5 @@ import { defineStore, createPinia, setActivePinia } from 'pinia'; -import type { ButtonProps } from '~/components/Brand/Button.vue'; +import type { ButtonProps } from '~/types/ui/button'; import { OBJ_TO_STR } from '~/helpers/functions';