diff options
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> |