From 6640bf4817754659954696b6b0da0e8fc6bb8e82 Mon Sep 17 00:00:00 2001 From: anmolsinghbhatia Date: Fri, 1 Sep 2023 16:39:52 +0530 Subject: [PATCH] fix: notification count mutation fix --- apps/app/hooks/use-user-notifications.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/app/hooks/use-user-notifications.tsx b/apps/app/hooks/use-user-notifications.tsx index 5e6ea5d0b9f..5ddc9ddf5de 100644 --- a/apps/app/hooks/use-user-notifications.tsx +++ b/apps/app/hooks/use-user-notifications.tsx @@ -299,6 +299,7 @@ const useUserNotification = () => { }) .finally(() => { notificationMutate(); + mutateNotificationCount(); }); };