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} notification={messageNotification}
onDismiss={() => { onDismiss={() => {
console.log('[LayoutWrapper] RocketChat message notification dismissed'); console.log('[LayoutWrapper] RocketChat message notification dismissed');
setMessageNotification(null); setMessageNotification();
}} }}
/> />
)} )}
@ -270,7 +270,7 @@ export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: Layou
notification={eventNotification} notification={eventNotification}
onDismiss={() => { onDismiss={() => {
console.log('[LayoutWrapper] Calendar event notification dismissed'); console.log('[LayoutWrapper] Calendar event notification dismissed');
setEventNotification(null); setEventNotification();
}} }}
/> />
)} )}
@ -279,7 +279,7 @@ export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: Layou
notification={taskNotification} notification={taskNotification}
onDismiss={() => { onDismiss={() => {
console.log('[LayoutWrapper] Task notification dismissed'); console.log('[LayoutWrapper] Task notification dismissed');
setTaskNotification(null); setTaskNotification();
}} }}
/> />
)} )}