diff --git a/src/pages/notifications.jsx b/src/pages/notifications.jsx index f1db5431..9f3871dd 100644 --- a/src/pages/notifications.jsx +++ b/src/pages/notifications.jsx @@ -165,7 +165,7 @@ export default () => { // Group notifications by today, yesterday, and older const groupedNotifications = snapStates.notifications.reduce( (acc, notification) => { - const date = new Date(notification.created_at); + const date = new Date(notification.createdAt); const today = new Date(); const yesterday = new Date(); yesterday.setDate(today.getDate() - 1);