From c5c86e6973676f2dd9ff00bf58abca322f47a7f2 Mon Sep 17 00:00:00 2001 From: Karl Ludwig Weise Date: Tue, 27 Jan 2026 22:12:30 +0100 Subject: [PATCH] Notifications are closed initially --- .../layouts/sidebar-layout/components/notifications.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/layouts/sidebar-layout/components/notifications.svelte b/src/lib/components/layouts/sidebar-layout/components/notifications.svelte index 87f0dfd..48666d5 100644 --- a/src/lib/components/layouts/sidebar-layout/components/notifications.svelte +++ b/src/lib/components/layouts/sidebar-layout/components/notifications.svelte @@ -12,7 +12,7 @@ import NotificationItem from "./notification-item.svelte"; const notifications = $derived($notificationsStore.notifications); - let open = $state(true); + let open = $state(false); const onOpenChange = (value: boolean) => { open = value;