diff --git a/src/view/com/posts/PostFeedReason.tsx b/src/view/com/posts/PostFeedReason.tsx index 4b0b34690d..575a59f83e 100644 --- a/src/view/com/posts/PostFeedReason.tsx +++ b/src/view/com/posts/PostFeedReason.tsx @@ -10,7 +10,7 @@ import {useSession} from '#/state/session' import {atoms as a, useTheme} from '#/alf' import {Pin_Stroke2_Corner0_Rounded as PinIcon} from '#/components/icons/Pin' import {Repost_Stroke2_Corner3_Rounded as RepostIcon} from '#/components/icons/Repost' -import {Link, WebOnlyInlineLinkText} from '#/components/Link' +import {Link} from '#/components/Link' import {ProfileHoverCard} from '#/components/ProfileHoverCard' import {Text} from '#/components/Typography' import {FeedNameText} from '../util/FeedInfoText' @@ -82,32 +82,21 @@ export function PostFeedReason({ width={13} height={13} /> - - {isOwner ? ( - Reposted by you - ) : ( - - Reposted by{' '} - - - {reposter} - - - - )} - + + + {isOwner ? ( + Reposted by you + ) : ( + Reposted by {reposter} + )} + + ) }