about summary refs log tree commit diff
path: root/src/view/com/post-thread/PostThreadItem.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r--src/view/com/post-thread/PostThreadItem.tsx4
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>
                 ) : (