From 3f6396572dab498ebc08b70aa0ac36a5e90939fd Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 12 Feb 2024 11:18:38 -0800 Subject: [PATCH] change follow to follow all when !== 20 (#2831) --- src/screens/Onboarding/StepSuggestedAccounts/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/screens/Onboarding/StepSuggestedAccounts/index.tsx b/src/screens/Onboarding/StepSuggestedAccounts/index.tsx index 965dae33..3caa38d4 100644 --- a/src/screens/Onboarding/StepSuggestedAccounts/index.tsx +++ b/src/screens/Onboarding/StepSuggestedAccounts/index.tsx @@ -175,7 +175,11 @@ export function StepSuggestedAccounts() { )} onPress={handleContinue}> - Follow All + {dids.length === 20 ? ( + Follow All + ) : ( + Follow + )}