We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18664cf commit 35858a4Copy full SHA for 35858a4
packages/app/src/app/pages/common/Navigation/index.tsx
@@ -105,7 +105,14 @@ const Navigation = ({ title, searchNoInput }: Props) => {
105
style={{ position: 'relative', fontSize: '1.25rem' }}
106
onClick={open}
107
>
108
- <Tooltip placement="bottom" content={store.userNotifications.unreadCount > 0 ? 'Show Notifications' : 'No Notifications'}>
+ <Tooltip
109
+ placement="bottom"
110
+ content={
111
+ userNotifications.unreadCount > 0
112
+ ? 'Show Notifications'
113
+ : 'No Notifications'
114
+ }
115
+ >
116
<BellIcon height={35} />
117
{userNotifications.unreadCount > 0 && <UnreadIcon />}
118
</Tooltip>
0 commit comments