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.
This commit is contained in:
Caidan Williams
2025-08-20 11:23:19 -07:00
parent eabcd9150d
commit b1ad229771
+1 -1
View File
@@ -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',
}),
)