Refer to upvotes as 'likes' in the UI (will change in the protocol soon)

This commit is contained in:
Paul Frazee 2023-01-17 12:35:47 -06:00
parent ee8d311795
commit 798622b307
7 changed files with 69 additions and 21 deletions

View file

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