resolve datetime conflict for notifications

This commit is contained in:
2026-03-19 16:58:21 +01:00
parent dbed114843
commit 72d2cfae27
5 changed files with 12 additions and 5 deletions
@@ -14,7 +14,7 @@ function NotificationCard({ notifications, deleteNotification }: NotificationCar
<div className={styles.notificationCard} key={index}>
<div className={styles.cardHeader}>
<span className={styles.timeTag}>
Le {formatDate(String(notification.created_at))} à {formatTime(String(notification.created_at))}
Le {formatDate(notification.created_at)} à {formatTime(notification.created_at)}
</span>
<button
className={styles.closeIconButton}