Fix underline color in header

This commit is contained in:
Eric Bailey
2024-03-14 11:59:12 -05:00
parent b8162aa3a7
commit 84f4c423fd
+4 -6
View File
@@ -30,23 +30,21 @@ export function ProfileHeaderMetrics({
pointerEvents="box-none">
<InlineLink
testID="profileHeaderFollowersButton"
style={a.flex_row}
style={[a.flex_row, t.atoms.text]}
to={makeProfileLink(profile, 'followers')}
label={`${followers} ${pluralizedFollowers}`}>
<Text style={[a.font_bold, t.atoms.text, a.text_md]}>{followers} </Text>
<Text style={[a.font_bold, a.text_md]}>{followers} </Text>
<Text style={[t.atoms.text_contrast_medium, a.text_md]}>
{pluralizedFollowers}
</Text>
</InlineLink>
<InlineLink
testID="profileHeaderFollowsButton"
style={a.flex_row}
style={[a.flex_row, t.atoms.text]}
to={makeProfileLink(profile, 'follows')}
label={_(msg`${following} following`)}>
<Trans>
<Text style={[a.font_bold, t.atoms.text, a.text_md]}>
{following}{' '}
</Text>
<Text style={[a.font_bold, a.text_md]}>{following} </Text>
<Text style={[t.atoms.text_contrast_medium, a.text_md]}>
following
</Text>