Skip to content

Commit fa0ef92

Browse files
authored
fix: notification bubble (#8411)
1 parent be163a2 commit fa0ef92

File tree

1 file changed

+1
-1
lines changed
  • packages/app/src/app/components/Notifications

1 file changed

+1
-1
lines changed

packages/app/src/app/components/Notifications/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export const Notifications = ({ dashboard }: { dashboard?: boolean }) => {
4040
onClick={open}
4141
>
4242
<Icon name="bell" size={16} title="Notifications" />
43-
{unreadCount === 0 ? (
43+
{unreadCount > 0 ? (
4444
<Element
4545
css={css({
4646
width: '8px',

0 commit comments

Comments
 (0)