about summary refs log tree commit diff
path: root/src/components
diff options
context:
space:
mode:
authorCaidan Williams <caidan@internet.dev>2025-08-21 13:53:44 -0700
committerCaidan Williams <caidan@internet.dev>2025-08-21 13:53:44 -0700
commit994003e6037e994dde3f96593ea6074ef5d68a61 (patch)
tree641bb02f7ce6ed13b0d159f94a2bc30287021b50 /src/components
parentb1ad229771103f9721e26a0a71b3890ec9d874d6 (diff)
downloadvoidsky-994003e6037e994dde3f96593ea6074ef5d68a61.tar.zst
fix: capitalization of "Follow back" to "Follow Back"
Diffstat (limited to 'src/components')
-rw-r--r--src/components/ProfileCard.tsx2
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',
     }),
   )