Merge branch 'main' into inherit_system_theme

This commit is contained in:
Jaz
2023-05-17 21:19:20 -07:00
committed by GitHub
14 changed files with 89 additions and 41 deletions
+5 -1
View File
@@ -215,7 +215,11 @@ export const DrawerContent = observer(() => {
}
label="Notifications"
accessibilityLabel="Notifications"
accessibilityHint={`${store.me.notifications.unreadCountLabel} unread`}
accessibilityHint={
notifications.unreadCountLabel === ''
? ''
: `${notifications.unreadCountLabel} unread`
}
count={notifications.unreadCountLabel}
bold={isAtNotifications}
onPress={onPressNotifications}