Added Participation Page
This commit is contained in:
@@ -428,11 +428,12 @@ export default function CalendrierTrajets({ refreshTrigger }: CalendrierTrajetsP
|
||||
date.getDate() === new Date().getDate() &&
|
||||
date.getMonth() === new Date().getMonth() &&
|
||||
date.getFullYear() === new Date().getFullYear();
|
||||
const isSelected =
|
||||
const isSelected = !!(
|
||||
selectedDate &&
|
||||
date.getDate() === selectedDate.getDate() &&
|
||||
date.getMonth() === selectedDate.getMonth() &&
|
||||
date.getFullYear() === selectedDate.getFullYear();
|
||||
date.getFullYear() === selectedDate.getFullYear()
|
||||
);
|
||||
|
||||
return (
|
||||
<DroppableDayCell
|
||||
|
||||
Reference in New Issue
Block a user