From 0b26a83c636b517bc3967211b23b31cb9a646328 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 11 Jul 2024 18:54:34 -0700 Subject: [PATCH] nit --- src/view/com/post/Post.tsx | 4 ++-- src/view/com/posts/FeedItem.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 28310dc4e0..a05339d4dc 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -147,7 +147,7 @@ function PostInner({ }, [queryClient, post.author]) const {currentAccount} = useSession() - const isOwner = replyAuthorDid === currentAccount?.did + const isMe = replyAuthorDid === currentAccount?.did return ( - {isOwner ? ( + {isMe ? ( Reply to you ) : ( diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index 4aa30f4300..a59eeea52e 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -436,7 +436,7 @@ function ReplyToLabel({ }) { const pal = usePalette('default') const {currentAccount} = useSession() - const isOwner = profile.did === currentAccount?.did + const isMe = profile.did === currentAccount?.did return ( @@ -450,7 +450,7 @@ function ReplyToLabel({ style={[pal.textLight, s.mr2]} lineHeight={1.2} numberOfLines={1}> - {isOwner ? ( + {isMe ? ( Reply to you ) : blocked ? ( Reply to a blocked post