diff --git a/client/src/stores/notifications.ts b/client/src/stores/notifications.ts index 8c0a4476..bed64f82 100644 --- a/client/src/stores/notifications.ts +++ b/client/src/stores/notifications.ts @@ -39,7 +39,7 @@ export const useNotificationsStore = defineStore("notifications", () => { updateUnreadCount(); timerHandle = setInterval( async () => await updateUnreadCount(), - 30000 + 150 * 1000 ) as unknown as number; } else if (!userStore.loggedIn) { log.debug("Notification polling stopped");