diff options
author | Caidan Williams <caidan@internet.dev> | 2025-08-21 13:53:44 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-08-21 13:53:44 -0700 |
commit | 994003e6037e994dde3f96593ea6074ef5d68a61 (patch) | |
tree | 641bb02f7ce6ed13b0d159f94a2bc30287021b50 /src | |
parent | b1ad229771103f9721e26a0a71b3890ec9d874d6 (diff) | |
download | voidsky-994003e6037e994dde3f96593ea6074ef5d68a61.tar.zst |
fix: capitalization of "Follow back" to "Follow Back"
Diffstat (limited to 'src')
-rw-r--r-- | src/components/ProfileCard.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
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', }), ) |