Use consistent font weight for repost count (#940)

This commit is contained in:
Dylan Smith
2023-07-02 19:25:47 +01:00
committed by GitHub
parent 7597fab290
commit 2be2498940
@@ -60,7 +60,7 @@ export const RepostButton = ({
{typeof repostCount !== 'undefined' ? ( {typeof repostCount !== 'undefined' ? (
<Text <Text
testID="repostCount" testID="repostCount"
type={isReposted ? 'md-bold' : 'md-medium'} type={isReposted ? 'md-bold' : 'md'}
style={styles.repostCount}> style={styles.repostCount}>
{repostCount ?? 0} {repostCount ?? 0}
</Text> </Text>