From b1ad229771103f9721e26a0a71b3890ec9d874d6 Mon Sep 17 00:00:00 2001 From: Caidan Williams Date: Wed, 20 Aug 2025 11:23:19 -0700 Subject: fix: show 'Follow back' label if user is followed by profile Updated ProfileCard.FollowButton label to display 'Follow back' when the current user is followed by the profile being viewed. --- src/components/ProfileCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/components/ProfileCard.tsx') diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index 5c99474a2..d3a2b8f1f 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -515,7 +515,7 @@ export function FollowButtonInner({ ) const followLabel = _( msg({ - message: 'Follow', + message: profile.viewer?.followedBy ? 'Follow back' : 'Follow', comment: 'User is not following this account, click to follow', }), ) -- cgit 1.4.1