change follow to follow all when !== 20 (#2831)

zio/stable
Hailey 2024-02-12 11:18:38 -08:00 committed by GitHub
parent 9301ae6830
commit 3f6396572d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -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>