diff options
author | Hailey <me@haileyok.com> | 2024-02-12 11:18:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 11:18:38 -0800 |
commit | 3f6396572dab498ebc08b70aa0ac36a5e90939fd (patch) | |
tree | d556677193560561557e738e435443ffb3a369c8 /src | |
parent | 9301ae68308db6d1fa8f78c17f0a117c2185ec6a (diff) | |
download | voidsky-3f6396572dab498ebc08b70aa0ac36a5e90939fd.tar.zst |
change follow to follow all when !== 20 (#2831)
Diffstat (limited to 'src')
-rw-r--r-- | src/screens/Onboarding/StepSuggestedAccounts/index.tsx | 6 |
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> |