Skip to content

Commit

Permalink
refactor(useNotificationsOverviewStore): remove impossible state type
Browse files Browse the repository at this point in the history
  • Loading branch information
marcel-bitfly committed Sep 25, 2024
1 parent 5253fe9 commit 20766d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"mainHeader",
"notifications",
"qrCode",
"useNotificationsOverviewStore",
"useWindowSize",
"vscode"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type {
} from '~/types/api/notifications'

const notificationsOverviewStore = defineStore('notifications_overview_store', () => {
const data = ref<NotificationOverviewData | null | undefined>()
const data = ref<NotificationOverviewData | undefined>()
return { data }
})

Expand Down

0 comments on commit 20766d2

Please sign in to comment.