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 } })