Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

show precise count in label/hover text (#6164)

authored by

Jordan Harband and committed by
GitHub
95ab4fa0 cfaf7416

+2 -2
+2 -2
src/screens/Profile/Header/Metrics.tsx
··· 36 36 testID="profileHeaderFollowersButton" 37 37 style={[a.flex_row, t.atoms.text]} 38 38 to={makeProfileLink(profile, 'followers')} 39 - label={`${followers} ${pluralizedFollowers}`}> 39 + label={`${profile.followersCount || 0} ${pluralizedFollowers}`}> 40 40 <Text style={[a.font_bold, a.text_md]}>{followers} </Text> 41 41 <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 42 42 {pluralizedFollowers} ··· 46 46 testID="profileHeaderFollowsButton" 47 47 style={[a.flex_row, t.atoms.text]} 48 48 to={makeProfileLink(profile, 'follows')} 49 - label={_(msg`${following} following`)}> 49 + label={_(msg`${profile.followsCount || 0} following`)}> 50 50 <Text style={[a.font_bold, a.text_md]}>{following} </Text> 51 51 <Text style={[t.atoms.text_contrast_medium, a.text_md]}> 52 52 {pluralizedFollowings}