about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDylan Smith <dylanatsmith@github.com>2023-07-02 19:25:47 +0100
committerGitHub <noreply@github.com>2023-07-02 13:25:47 -0500
commit2be249894091715b325ee489795727d0a7b40b16 (patch)
tree1d90374fe835e5372b1671809719d04e24168157 /src
parent7597fab290c1cef12f2088dc06515a7de9523a0c (diff)
downloadvoidsky-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.tsx2
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>