change follow to follow all when !== 20 (#2831)
parent
9301ae6830
commit
3f6396572d
|
@ -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…
Reference in New Issue