From 7d55a1c2cd68df08a7dc05dd7eda4c7aa081948c Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 9 May 2024 16:37:39 -0700 Subject: [PATCH] chore: UpdateOS Status unused import --- web/components/UpdateOs/Status.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/web/components/UpdateOs/Status.vue b/web/components/UpdateOs/Status.vue index 0aef3bf07..893ad5c36 100644 --- a/web/components/UpdateOs/Status.vue +++ b/web/components/UpdateOs/Status.vue @@ -12,7 +12,6 @@ import { storeToRefs } from 'pinia'; import { WEBGUI_TOOLS_REGISTRATION } from '~/helpers/urls'; import useDateTimeHelper from '~/composables/dateTime'; -import { useAccountStore } from '~/store/account'; import { useServerStore } from '~/store/server'; import { useUpdateOsStore } from '~/store/updateOs'; import { useUpdateOsActionsStore } from '~/store/updateOsActions'; @@ -36,7 +35,6 @@ const props = withDefaults(defineProps(), { subtitle: undefined, }); -const accountStore = useAccountStore(); const serverStore = useServerStore(); const updateOsStore = useUpdateOsStore(); const updateOsActionsStore = useUpdateOsActionsStore();