Skip to content

Commit db7043f

Browse files
committed
fix(app): show unread indicator if total is greater than 0
1 parent b1237d3 commit db7043f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/app/src/components/notifications/notification-bell.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export function NotificationBell() {
7171
className="relative cursor-pointer"
7272
>
7373
<Bell size={20} />
74-
{total > -1 && (
74+
{total > 0 && (
7575
<span className="absolute top-0 right-0 h-2 w-2 rounded-full bg-red-500" />
7676
)}
7777
</button>

0 commit comments

Comments
 (0)