about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorrenahlee <renahlee@outlook.com>2023-05-17 09:13:06 -0700
committerrenahlee <renahlee@outlook.com>2023-05-17 09:13:06 -0700
commitd6ca8e918af213959791bec3e9daf976c65c1be1 (patch)
tree2f31fb4a2c86ee12feae7f449a67a28aeae47e34 /src
parentf7f0db65d36506d1e32c3d349e4505136180afb0 (diff)
downloadvoidsky-d6ca8e918af213959791bec3e9daf976c65c1be1.tar.zst
Update to empty hint if no notifications
Diffstat (limited to 'src')
-rw-r--r--src/view/shell/Drawer.tsx2
-rw-r--r--src/view/shell/bottom-bar/BottomBar.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/view/shell/Drawer.tsx b/src/view/shell/Drawer.tsx
index 89e30002e..2ecdbaab2 100644
--- a/src/view/shell/Drawer.tsx
+++ b/src/view/shell/Drawer.tsx
@@ -224,7 +224,7 @@ export const DrawerContent = observer(() => {
             accessibilityLabel="Notifications"
             accessibilityHint={
               notifications.unreadCountLabel === ''
-                ? 'No new notifications'
+                ? ''
                 : `${notifications.unreadCountLabel} unread`
             }
             count={notifications.unreadCountLabel}
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`
         }
       />