From 6130a1c459a84d5cbd5a44e52a78a14a9f2d0cad Mon Sep 17 00:00:00 2001 From: Alex Moldovan Date: Tue, 26 Mar 2024 19:13:01 +0000 Subject: [PATCH] fix: notification bubble --- packages/app/src/app/components/Notifications/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app/src/app/components/Notifications/index.tsx b/packages/app/src/app/components/Notifications/index.tsx index 15c5b60b58c..f6bf3939c59 100644 --- a/packages/app/src/app/components/Notifications/index.tsx +++ b/packages/app/src/app/components/Notifications/index.tsx @@ -40,7 +40,7 @@ export const Notifications = ({ dashboard }: { dashboard?: boolean }) => { onClick={open} > - {unreadCount === 0 ? ( + {unreadCount > 0 ? (