Notifications are closed initially

This commit is contained in:
Karl Ludwig Weise
2026-01-27 22:12:30 +01:00
parent bf9d642f0c
commit c5c86e6973
@@ -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;