change follow to follow all when !== 20 (#2831)
This commit is contained in:
parent
9301ae6830
commit
3f6396572d
1 changed files with 5 additions and 1 deletions
|
@ -175,7 +175,11 @@ export function StepSuggestedAccounts() {
|
||||||
)}
|
)}
|
||||||
onPress={handleContinue}>
|
onPress={handleContinue}>
|
||||||
<ButtonText>
|
<ButtonText>
|
||||||
<Trans>Follow All</Trans>
|
{dids.length === 20 ? (
|
||||||
|
<Trans>Follow All</Trans>
|
||||||
|
) : (
|
||||||
|
<Trans>Follow</Trans>
|
||||||
|
)}
|
||||||
</ButtonText>
|
</ButtonText>
|
||||||
<ButtonIcon icon={saving ? Loader : Plus} position="right" />
|
<ButtonIcon icon={saving ? Loader : Plus} position="right" />
|
||||||
</Button>
|
</Button>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue