diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 12:35:47 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 12:35:47 -0600 |
commit | 798622b307220a8634a911afabea3864a812aa64 (patch) | |
tree | 730f0d48923feb72a60668c994d2d5628ea0e2f5 /src/view/com/post-thread/PostThreadItem.tsx | |
parent | ee8d311795954f6bece81b9cbaebdb79eee20d0d (diff) | |
download | voidsky-798622b307220a8634a911afabea3864a812aa64.tar.zst |
Refer to upvotes as 'likes' in the UI (will change in the protocol soon)
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 1764dc140..86e428621 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -47,7 +47,7 @@ export const PostThreadItem = observer(function PostThreadItem({ const urip = new AtUri(item.post.uri) return `/profile/${item.post.author.handle}/post/${urip.rkey}/upvoted-by` }, [item.post.uri, item.post.author.handle]) - const upvotesTitle = 'Upvotes on this post' + const upvotesTitle = 'Likes on this post' const repostsHref = useMemo(() => { const urip = new AtUri(item.post.uri) return `/profile/${item.post.author.handle}/post/${urip.rkey}/reposted-by` @@ -209,7 +209,7 @@ export const PostThreadItem = observer(function PostThreadItem({ <Text type="h5" style={pal.text}> {item.post.upvoteCount} </Text>{' '} - {pluralize(item.post.upvoteCount, 'upvote')} + {pluralize(item.post.upvoteCount, 'like')} </Text> </Link> ) : ( |