diff --git a/src/stores/notifications.js b/src/stores/notifications.js index a12ce8133..99d56e0d0 100644 --- a/src/stores/notifications.js +++ b/src/stores/notifications.js @@ -190,12 +190,10 @@ export const useNotificationsStore = defineStore('notifications', { } this.idStore.set(notification.id, notification) - if (notification.status) { - this.statusNotificationRelations.set( - notification.status, - this.idStore.get(notification.id), - ) - } + this.statusNotificationRelations.set( + notification.status, + this.idStore.get(notification.id), + ) maybeShowNotification( useMergedConfigStore().mergedConfig.notificationVisibility,