Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix: dont let notifications count go behind the icon (#3505)

authored by

Paul Frazee and committed by
GitHub
14208eef eb2fd533

+1 -1
+1 -1
src/view/shell/bottom-bar/BottomBar.tsx
··· 348 348 accessible={accessible} 349 349 accessibilityLabel={accessibilityLabel} 350 350 accessibilityHint={accessibilityHint}> 351 + {icon} 351 352 {notificationCount ? ( 352 353 <View style={[styles.notificationCount]}> 353 354 <Text style={styles.notificationCountLabel}>{notificationCount}</Text> 354 355 </View> 355 356 ) : undefined} 356 - {icon} 357 357 </TouchableOpacity> 358 358 ) 359 359 }