Fix visual consistency of 'reply to' in post and use display name

zio/stable
Paul Frazee 2023-01-16 16:24:16 -06:00
parent e5e31e5fe2
commit c659f0ef9f
2 changed files with 5 additions and 5 deletions

View File

@ -173,8 +173,8 @@ export const Post = observer(function Post({
<UserInfoText
type="body2"
did={replyAuthorDid}
attr="displayName"
style={[pal.textLight]}
prefix="@"
/>
</Link>
</View>

View File

@ -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>