diff --git a/components/calendar/calendar-client.tsx b/components/calendar/calendar-client.tsx index 42810b7..b345c89 100644 --- a/components/calendar/calendar-client.tsx +++ b/components/calendar/calendar-client.tsx @@ -1383,11 +1383,11 @@ export function CalendarClient({ initialCalendars, userId, userProfile }: Calend style={{ backgroundColor: calendar.color }} /> - + {getCalendarDisplayName(calendar as CalendarWithMission)} {calendar.syncConfig?.syncEnabled && ( - + Sync )} @@ -1616,7 +1616,7 @@ export function CalendarClient({ initialCalendars, userId, userProfile }: Calend return (
{/* Left column for calendars */} -
+

Calendriers

@@ -1861,7 +1861,7 @@ export function CalendarClient({ initialCalendars, userId, userProfile }: Calend boxShadow: `inset 0 0 0 1px ${arg.event.borderColor}, 0 2px 4px ${arg.event.borderColor}40` }} > -
+
{!arg.event.allDay && ( {typeof arg.event.start === 'object' && arg.event.start instanceof Date @@ -1872,7 +1872,7 @@ export function CalendarClient({ initialCalendars, userId, userProfile }: Calend : ''} )} - + {arg.event.title}
diff --git a/components/layout/layout-wrapper.tsx b/components/layout/layout-wrapper.tsx index fd3d089..5b0f99a 100644 --- a/components/layout/layout-wrapper.tsx +++ b/components/layout/layout-wrapper.tsx @@ -224,6 +224,8 @@ export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: Layou style={ isSignInPage ? {} // No background style for signin page - let the page component handle it + : isAgendaPage + ? {} // No background for agenda page - it has its own white background : { backgroundImage: `url('${currentBackground}')`, backgroundSize: 'cover', @@ -234,7 +236,7 @@ export function LayoutWrapper({ children, isSignInPage, isAuthenticated }: Layou transition: 'background-image 0.5s ease-in-out' } } - onClick={!isSignInPage ? changeBackground : undefined} + onClick={!isSignInPage && !isAgendaPage ? changeBackground : undefined} >
{children}