Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix - Android - Wallet - BA number in two lines is cut off at the bottom #47757

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1428,7 +1428,7 @@ export default {
addPaymentMethod: 'Add payment method',
addNewDebitCard: 'Add new debit card',
addNewBankAccount: 'Add new bank account',
accountLastFour: 'Account ending in',
accountLastFour: 'Ending in',
cardLastFour: 'Card ending in',
addFirstPaymentMethod: 'Add a payment method to send and receive payments directly in the app.',
defaultPaymentMethod: 'Default',
Expand Down
2 changes: 1 addition & 1 deletion src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,7 @@ export default {
addPaymentMethod: 'Añadir método de pago',
addNewDebitCard: 'Añadir nueva tarjeta de débito',
addNewBankAccount: 'Añadir nueva cuenta de banco',
accountLastFour: 'Cuenta terminada en',
accountLastFour: 'Terminada en',
cardLastFour: 'Tarjeta terminada en',
addFirstPaymentMethod: 'Añade un método de pago para enviar y recibir pagos directamente desde la aplicación.',
defaultPaymentMethod: 'Predeterminado',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function EnableBankAccount({reimbursementAccount, user, onBackButtonPress}: Enab
const achData = reimbursementAccount?.achData ?? {};
const {icon, iconSize} = getBankIcon({bankName: achData.bankName, styles});
const isUsingExpensifyCard = user?.isUsingExpensifyCard;
const formattedBankAccountNumber = achData.accountNumber ? `${translate('paymentMethodList.accountLastFour')} ${achData.accountNumber.slice(-4)}` : '';
const formattedBankAccountNumber = achData.accountNumber ? `${translate('bankAccount.accountEnding')} ${achData.accountNumber.slice(-4)}` : '';
const bankAccountOwnerName = achData.addressName;
const errors = reimbursementAccount?.errors ?? {};
const pendingAction = reimbursementAccount?.pendingAction;
Expand Down
2 changes: 1 addition & 1 deletion src/styles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3777,7 +3777,7 @@ const styles = (theme: ThemeColors) =>

paymentMethod: {
paddingHorizontal: 20,
height: variables.optionRowHeight,
minHeight: variables.optionRowHeight,
},

chatFooterBanner: {
Expand Down
Loading