diff --git a/web/components/UpdateOs/CallbackButton.vue b/web/components/UpdateOs/CallbackButton.vue index f50eeca65..c1080669b 100644 --- a/web/components/UpdateOs/CallbackButton.vue +++ b/web/components/UpdateOs/CallbackButton.vue @@ -2,8 +2,10 @@ import { ArrowPathIcon, ArrowTopRightOnSquareIcon } from '@heroicons/vue/24/solid'; import { useAccountStore } from '~/store/account'; +import type { ButtonStyle } from '~/types/ui/button'; defineProps<{ + btnStyle?: ButtonStyle; t: any; }>(); @@ -13,6 +15,7 @@ const accountStore = useAccountStore();