Update to empty hint if no notifications
parent
f7f0db65d3
commit
d6ca8e918a
|
@ -224,7 +224,7 @@ export const DrawerContent = observer(() => {
|
|||
accessibilityLabel="Notifications"
|
||||
accessibilityHint={
|
||||
notifications.unreadCountLabel === ''
|
||||
? 'No new notifications'
|
||||
? ''
|
||||
: `${notifications.unreadCountLabel} unread`
|
||||
}
|
||||
count={notifications.unreadCountLabel}
|
||||
|
|
|
@ -145,7 +145,7 @@ export const BottomBar = observer(({navigation}: BottomTabBarProps) => {
|
|||
accessibilityLabel="Notifications"
|
||||
accessibilityHint={
|
||||
notifications.unreadCountLabel === ''
|
||||
? 'No new notifications'
|
||||
? ''
|
||||
: `${notifications.unreadCountLabel} unread`
|
||||
}
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue