diff options
Diffstat (limited to 'src')
-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 c35fa106d..4caff6c4d 100644 --- a/src/view/shell/bottom-bar/BottomBar.tsx +++ b/src/view/shell/bottom-bar/BottomBar.tsx @@ -348,12 +348,12 @@ function Btn({ accessible={accessible} accessibilityLabel={accessibilityLabel} accessibilityHint={accessibilityHint}> + {icon} {notificationCount ? ( <View style={[styles.notificationCount]}> <Text style={styles.notificationCountLabel}>{notificationCount}</Text> </View> ) : undefined} - {icon} </TouchableOpacity> ) } |