diff options
author | Dylan Smith <dylanatsmith@github.com> | 2023-07-02 19:25:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 13:25:47 -0500 |
commit | 2be249894091715b325ee489795727d0a7b40b16 (patch) | |
tree | 1d90374fe835e5372b1671809719d04e24168157 /src | |
parent | 7597fab290c1cef12f2088dc06515a7de9523a0c (diff) | |
download | voidsky-2be249894091715b325ee489795727d0a7b40b16.tar.zst |
Use consistent font weight for repost count (#940)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/post-ctrls/RepostButton.web.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/post-ctrls/RepostButton.web.tsx b/src/view/com/util/post-ctrls/RepostButton.web.tsx index 66cc0d123..4d2a3fcdd 100644 --- a/src/view/com/util/post-ctrls/RepostButton.web.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.web.tsx @@ -60,7 +60,7 @@ export const RepostButton = ({ {typeof repostCount !== 'undefined' ? ( <Text testID="repostCount" - type={isReposted ? 'md-bold' : 'md-medium'} + type={isReposted ? 'md-bold' : 'md'} style={styles.repostCount}> {repostCount ?? 0} </Text> |