diff options
author | renahlee <renahlee@outlook.com> | 2023-05-17 09:13:06 -0700 |
---|---|---|
committer | renahlee <renahlee@outlook.com> | 2023-05-17 09:13:06 -0700 |
commit | d6ca8e918af213959791bec3e9daf976c65c1be1 (patch) | |
tree | 2f31fb4a2c86ee12feae7f449a67a28aeae47e34 /src/view/shell/bottom-bar/BottomBar.tsx | |
parent | f7f0db65d36506d1e32c3d349e4505136180afb0 (diff) | |
download | voidsky-d6ca8e918af213959791bec3e9daf976c65c1be1.tar.zst |
Update to empty hint if no notifications
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBar.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/shell/bottom-bar/BottomBar.tsx b/src/view/shell/bottom-bar/BottomBar.tsx index b057964c6..ef9499f9f 100644 --- a/src/view/shell/bottom-bar/BottomBar.tsx +++ b/src/view/shell/bottom-bar/BottomBar.tsx @@ -145,7 +145,7 @@ export const BottomBar = observer(({navigation}: BottomTabBarProps) => { accessibilityLabel="Notifications" accessibilityHint={ notifications.unreadCountLabel === '' - ? 'No new notifications' + ? '' : `${notifications.unreadCountLabel} unread` } /> |