about summary refs log tree commit diff
path: root/src/view/screens/PostUpvotedBy.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-01-17 12:35:47 -0600
committerPaul Frazee <pfrazee@gmail.com>2023-01-17 12:35:47 -0600
commit798622b307220a8634a911afabea3864a812aa64 (patch)
tree730f0d48923feb72a60668c994d2d5628ea0e2f5 /src/view/screens/PostUpvotedBy.tsx
parentee8d311795954f6bece81b9cbaebdb79eee20d0d (diff)
downloadvoidsky-798622b307220a8634a911afabea3864a812aa64.tar.zst
Refer to upvotes as 'likes' in the UI (will change in the protocol soon)
Diffstat (limited to 'src/view/screens/PostUpvotedBy.tsx')
-rw-r--r--src/view/screens/PostUpvotedBy.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/screens/PostUpvotedBy.tsx b/src/view/screens/PostUpvotedBy.tsx
index 2794d529a..7379b852f 100644
--- a/src/view/screens/PostUpvotedBy.tsx
+++ b/src/view/screens/PostUpvotedBy.tsx
@@ -13,13 +13,13 @@ export const PostUpvotedBy = ({navIdx, visible, params}: ScreenParams) => {
 
   useEffect(() => {
     if (visible) {
-      store.nav.setTitle(navIdx, 'Upvoted by')
+      store.nav.setTitle(navIdx, 'Liked by')
     }
   }, [store, visible])
 
   return (
     <View>
-      <ViewHeader title="Upvoted by" />
+      <ViewHeader title="Liked by" />
       <PostLikedByComponent uri={uri} direction="up" />
     </View>
   )