Fondation

This commit is contained in:
alma 2026-01-17 02:00:58 +01:00
parent d5dd34677e
commit 429874f86f

View File

@ -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();
}}
/>
)}