about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-02-12 11:18:38 -0800
committerGitHub <noreply@github.com>2024-02-12 11:18:38 -0800
commit3f6396572dab498ebc08b70aa0ac36a5e90939fd (patch)
treed556677193560561557e738e435443ffb3a369c8 /src
parent9301ae68308db6d1fa8f78c17f0a117c2185ec6a (diff)
downloadvoidsky-3f6396572dab498ebc08b70aa0ac36a5e90939fd.tar.zst
change follow to follow all when !== 20 (#2831)
Diffstat (limited to 'src')
-rw-r--r--src/screens/Onboarding/StepSuggestedAccounts/index.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/screens/Onboarding/StepSuggestedAccounts/index.tsx b/src/screens/Onboarding/StepSuggestedAccounts/index.tsx
index 965dae334..3caa38d4f 100644
--- a/src/screens/Onboarding/StepSuggestedAccounts/index.tsx
+++ b/src/screens/Onboarding/StepSuggestedAccounts/index.tsx
@@ -175,7 +175,11 @@ export function StepSuggestedAccounts() {
             )}
             onPress={handleContinue}>
             <ButtonText>
-              <Trans>Follow All</Trans>
+              {dids.length === 20 ? (
+                <Trans>Follow All</Trans>
+              ) : (
+                <Trans>Follow</Trans>
+              )}
             </ButtonText>
             <ButtonIcon icon={saving ? Loader : Plus} position="right" />
           </Button>