From 441e83eba609722caa8d297428d656c889d0cd22 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Fri, 1 Sep 2023 17:08:02 +0530 Subject: [PATCH] fix: notification count mutation fix (#2053) --- 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 5e6ea5d0b..5ddc9ddf5 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(); }); };