Skip to content

Commit 82df538

Browse files
committed
fix: Wallet - "Choose an account" page shows extra left margin
1 parent 76bc375 commit 82df538

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/components/AddPlaidBankAccount.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ function AddPlaidBankAccount({
187187
if (isPlaidDisabled) {
188188
return (
189189
<View>
190-
<Text style={[styles.formError]}>{translate('bankAccount.error.tooManyAttempts')}</Text>
190+
<Text style={[styles.formError, styles.mh5]}>{translate('bankAccount.error.tooManyAttempts')}</Text>
191191
</View>
192192
);
193193
}

src/pages/settings/Wallet/InternationalDepositAccount/PersonalInfo/substeps/PlaidBankAccountStep.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,10 @@ function PlaidBankAccountStep({onNext, isEditing}: SubStepProps) {
3535
isSubmitButtonVisible={(plaidData?.bankAccounts ?? []).length > 0}
3636
scrollContextEnabled
3737
submitButtonText={translate(isEditing ? 'common.confirm' : 'common.next')}
38+
submitButtonStyles={styles.mh5}
3839
onSubmit={handleSubmit}
3940
validate={validatePlaidSelection}
40-
style={[styles.mh5, styles.flex1]}
41+
style={styles.flexGrow1}
4142
shouldHideFixErrorsAlert
4243
>
4344
<InputWrapper

0 commit comments

Comments
 (0)