From 115bf7fac768788fde48b9f0347e8769c36668d9 Mon Sep 17 00:00:00 2001 From: marcel-bitfly <174338434+marcel-bitfly@users.noreply.github.com> Date: Wed, 25 Sep 2024 14:54:52 +0200 Subject: [PATCH] refactor(useNotificationsOverviewStore): remove impossible `state type` --- frontend/.vscode/settings.json | 1 + frontend/stores/notifications/useNotificationsOverviewStore.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/.vscode/settings.json b/frontend/.vscode/settings.json index e497fcc76..0a9948f53 100644 --- a/frontend/.vscode/settings.json +++ b/frontend/.vscode/settings.json @@ -19,6 +19,7 @@ "mainHeader", "notifications", "qrCode", + "useNotificationsOverviewStore", "useWindowSize", "vscode" ], diff --git a/frontend/stores/notifications/useNotificationsOverviewStore.ts b/frontend/stores/notifications/useNotificationsOverviewStore.ts index c79cb7684..ac12be5c3 100644 --- a/frontend/stores/notifications/useNotificationsOverviewStore.ts +++ b/frontend/stores/notifications/useNotificationsOverviewStore.ts @@ -5,7 +5,7 @@ import type { } from '~/types/api/notifications' const notificationsOverviewStore = defineStore('notifications_overview_store', () => { - const data = ref() + const data = ref() return { data } })