From 429874f86f9d87f620b3f58c3f211a540127cd77 Mon Sep 17 00:00:00 2001 From: alma Date: Sat, 17 Jan 2026 02:00:58 +0100 Subject: [PATCH] Fondation --- components/layout/layout-wrapper.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/layout/layout-wrapper.tsx b/components/layout/layout-wrapper.tsx index 4297a0c..aee2760 100644 --- a/components/layout/layout-wrapper.tsx +++ b/components/layout/layout-wrapper.tsx @@ -261,7 +261,7 @@ export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: Layou notification={messageNotification} onDismiss={() => { console.log('[LayoutWrapper] RocketChat message notification dismissed'); - setMessageNotification(null); + setMessageNotification(); }} /> )} @@ -270,7 +270,7 @@ export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: Layou notification={eventNotification} onDismiss={() => { console.log('[LayoutWrapper] Calendar event notification dismissed'); - setEventNotification(null); + setEventNotification(); }} /> )} @@ -279,7 +279,7 @@ export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: Layou notification={taskNotification} onDismiss={() => { console.log('[LayoutWrapper] Task notification dismissed'); - setTaskNotification(null); + setTaskNotification(); }} /> )}