diff options
Diffstat (limited to 'src/view')
-rw-r--r-- | src/view/com/post/Post.tsx | 2 | ||||
-rw-r--r-- | src/view/com/posts/PostFeedItem.tsx | 4 | ||||
-rw-r--r-- | src/view/com/util/PostMeta.tsx | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index d92ea6a9d..19017f30f 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -204,7 +204,7 @@ function PostInner({ ) : ( <Trans context="description"> Reply to{' '} - <ProfileHoverCard inline did={replyAuthorDid}> + <ProfileHoverCard did={replyAuthorDid}> <UserInfoText type="sm" did={replyAuthorDid} diff --git a/src/view/com/posts/PostFeedItem.tsx b/src/view/com/posts/PostFeedItem.tsx index a5a7a777e..6755f013d 100644 --- a/src/view/com/posts/PostFeedItem.tsx +++ b/src/view/com/posts/PostFeedItem.tsx @@ -368,7 +368,7 @@ let FeedItemInner = ({ ) : ( <Trans> Reposted by{' '} - <ProfileHoverCard inline did={reason.by.did}> + <ProfileHoverCard did={reason.by.did}> <TextLinkOnWebOnly type="sm-bold" style={pal.textLight} @@ -607,7 +607,7 @@ function ReplyToLabel({ label = ( <Trans context="description"> Reply to{' '} - <ProfileHoverCard inline did={profile.did}> + <ProfileHoverCard did={profile.did}> <TextLinkOnWebOnly type="md" style={pal.textLight} diff --git a/src/view/com/util/PostMeta.tsx b/src/view/com/util/PostMeta.tsx index 62ba32c9b..30ebbf2c2 100644 --- a/src/view/com/util/PostMeta.tsx +++ b/src/view/com/util/PostMeta.tsx @@ -82,7 +82,7 @@ let PostMeta = (opts: PostMetaOpts): React.ReactNode => { </View> )} <View style={[a.flex_row, a.align_end, a.flex_shrink]}> - <ProfileHoverCard inline did={author.did}> + <ProfileHoverCard did={author.did}> <View style={[a.flex_row, a.align_end, a.flex_shrink]}> <WebOnlyInlineLinkText emoji |