Skip to content

Commit

Permalink
fix: notification bubble
Browse files Browse the repository at this point in the history
  • Loading branch information
alexnm committed Mar 26, 2024
1 parent be163a2 commit 6130a1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/app/components/Notifications/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const Notifications = ({ dashboard }: { dashboard?: boolean }) => {
onClick={open}
>
<Icon name="bell" size={16} title="Notifications" />
{unreadCount === 0 ? (
{unreadCount > 0 ? (
<Element
css={css({
width: '8px',
Expand Down

0 comments on commit 6130a1c

Please sign in to comment.