diff options
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBarWeb.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarWeb.tsx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/view/shell/bottom-bar/BottomBarWeb.tsx b/src/view/shell/bottom-bar/BottomBarWeb.tsx index d29649c8b..8c64f81a8 100644 --- a/src/view/shell/bottom-bar/BottomBarWeb.tsx +++ b/src/view/shell/bottom-bar/BottomBarWeb.tsx @@ -112,11 +112,8 @@ export function BottomBarWeb() { <NavItem routeName="Messages" href="/messages" - notificationCount={ - unreadMessageCount.count > 0 - ? unreadMessageCount.numUnread - : undefined - }> + notificationCount={unreadMessageCount.numUnread} + hasNew={unreadMessageCount.hasNew}> {({isActive}) => { const Icon = isActive ? MessageFilled : Message return ( |