From 95ab4fa0a1aa63ec3e96bb552a8583547b8b5f64 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Thu, 17 Jul 2025 22:11:34 -0700 Subject: show precise count in label/hover text (#6164) --- src/screens/Profile/Header/Metrics.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/screens/Profile/Header/Metrics.tsx b/src/screens/Profile/Header/Metrics.tsx index 6fc77142e..736e5ccee 100644 --- a/src/screens/Profile/Header/Metrics.tsx +++ b/src/screens/Profile/Header/Metrics.tsx @@ -36,7 +36,7 @@ export function ProfileHeaderMetrics({ testID="profileHeaderFollowersButton" style={[a.flex_row, t.atoms.text]} to={makeProfileLink(profile, 'followers')} - label={`${followers} ${pluralizedFollowers}`}> + label={`${profile.followersCount || 0} ${pluralizedFollowers}`}> {followers} {pluralizedFollowers} @@ -46,7 +46,7 @@ export function ProfileHeaderMetrics({ testID="profileHeaderFollowsButton" style={[a.flex_row, t.atoms.text]} to={makeProfileLink(profile, 'follows')} - label={_(msg`${following} following`)}> + label={_(msg`${profile.followsCount || 0} following`)}> {following} {pluralizedFollowings} -- cgit 1.4.1