about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-01-16 16:24:16 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-01-16 16:24:16 -0600
commitc659f0ef9f1b1c13112e70e9001a996a117f20d3 (patch)
tree8a2d1ea20168e81a8ea3b6682d00d9ab86daa210
parente5e31e5fe21872649ef174a3262da3c0f8431ccd (diff)
downloadvoidsky-c659f0ef9f1b1c13112e70e9001a996a117f20d3.tar.zst
Fix visual consistency of 'reply to' in post and use display name
-rw-r--r--src/view/com/post/Post.tsx2
-rw-r--r--src/view/com/posts/FeedItem.tsx8
2 files changed, 5 insertions, 5 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx
index c9f4d3a16..75ed84954 100644
--- a/src/view/com/post/Post.tsx
+++ b/src/view/com/post/Post.tsx
@@ -173,8 +173,8 @@ export const Post = observer(function Post({
                 <UserInfoText
                   type="body2"
                   did={replyAuthorDid}
+                  attr="displayName"
                   style={[pal.textLight]}
-                  prefix="@"
                 />
               </Link>
             </View>
diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx
index 96ecae1b5..f1ade2037 100644
--- a/src/view/com/posts/FeedItem.tsx
+++ b/src/view/com/posts/FeedItem.tsx
@@ -187,17 +187,17 @@ export const FeedItem = observer(function ({
                 <FontAwesomeIcon
                   icon="reply"
                   size={9}
-                  style={[{color: pal.colors.text}, s.mr5]}
+                  style={[{color: pal.colors.textLight}, s.mr5]}
                 />
-                <Text type="caption" style={[pal.textLight, s.mr2]}>
+                <Text type="body2" style={[pal.textLight, s.mr2]}>
                   Reply to
                 </Text>
                 <Link href={replyHref} title="Parent post">
                   <UserInfoText
-                    type="caption"
+                    type="body2"
                     did={replyAuthorDid}
+                    attr="displayName"
                     style={[pal.textLight]}
-                    prefix="@"
                   />
                 </Link>
               </View>