From 798622b307220a8634a911afabea3864a812aa64 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 17 Jan 2023 12:35:47 -0600 Subject: Refer to upvotes as 'likes' in the UI (will change in the protocol soon) --- src/view/com/post-thread/PostThreadItem.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/view/com/post-thread/PostThreadItem.tsx') 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({ {item.post.upvoteCount} {' '} - {pluralize(item.post.upvoteCount, 'upvote')} + {pluralize(item.post.upvoteCount, 'like')} ) : ( -- cgit 1.4.1