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