diff options
Diffstat (limited to 'src/view/shell/BottomBar.tsx')
-rw-r--r-- | src/view/shell/BottomBar.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/shell/BottomBar.tsx b/src/view/shell/BottomBar.tsx index e46eeb991..b01366b2b 100644 --- a/src/view/shell/BottomBar.tsx +++ b/src/view/shell/BottomBar.tsx @@ -167,7 +167,9 @@ export const BottomBar = observer(({navigation}: BottomTabBarProps) => { ) } onPress={onPressNotifications} - notificationCount={store.me.notifications.unreadCount} + notificationCount={ + store.me.notifications.unreadCount + store.invitedUsers.numNotifs + } /> <Btn testID="bottomBarProfileBtn" |