Merged in release/2024-03-14 (pull request #2146)

Release/2024 03 14
This commit is contained in:
Dave Richer
2025-03-04 22:56:23 +00:00
11 changed files with 279 additions and 69 deletions

View File

@@ -85,7 +85,11 @@ const SocketProvider = ({ children, bodyshop, navigate, currentUser, scenarioNot
});
}
},
onError: (err) => console.error("MARK_NOTIFICATION_READ error:", err)
onError: (err) =>
console.error("MARK_NOTIFICATION_READ error:", {
message: err?.message,
stack: err?.stack
})
});
const [markAllNotificationsRead] = useMutation(MARK_ALL_NOTIFICATIONS_READ, {