Skip to content

Commit 35858a4

Browse files
committed
Fix type errors
1 parent 18664cf commit 35858a4

File tree

1 file changed

+8
-1
lines changed
  • packages/app/src/app/pages/common/Navigation

1 file changed

+8
-1
lines changed

packages/app/src/app/pages/common/Navigation/index.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,14 @@ const Navigation = ({ title, searchNoInput }: Props) => {
105105
style={{ position: 'relative', fontSize: '1.25rem' }}
106106
onClick={open}
107107
>
108-
<Tooltip placement="bottom" content={store.userNotifications.unreadCount > 0 ? 'Show Notifications' : 'No Notifications'}>
108+
<Tooltip
109+
placement="bottom"
110+
content={
111+
userNotifications.unreadCount > 0
112+
? 'Show Notifications'
113+
: 'No Notifications'
114+
}
115+
>
109116
<BellIcon height={35} />
110117
{userNotifications.unreadCount > 0 && <UnreadIcon />}
111118
</Tooltip>

0 commit comments

Comments
 (0)