From 994003e6037e994dde3f96593ea6074ef5d68a61 Mon Sep 17 00:00:00 2001 From: Caidan Williams Date: Thu, 21 Aug 2025 13:53:44 -0700 Subject: fix: capitalization of "Follow back" to "Follow Back" --- 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 d3a2b8f1f..ea7333c2e 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -515,7 +515,7 @@ export function FollowButtonInner({ ) const followLabel = _( msg({ - message: profile.viewer?.followedBy ? 'Follow back' : 'Follow', + message: profile.viewer?.followedBy ? 'Follow Back' : 'Follow', comment: 'User is not following this account, click to follow', }), ) -- cgit 1.4.1