Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
stitesExpensify committed Jul 28, 2021
1 parent 72da49a commit ae9cc84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/settings/Payments/PaymentMethodList.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ class PaymentMethodList extends Component {
// Add all bank accounts besides the wallet
if (bankAccount.type !== CONST.BANK_ACCOUNT_TYPES.WALLET) {
const formattedBankAccountNumber = bankAccount.accountNumber
? `${this.props.translate('paymentMethodList.accountLastFour')} ${bankAccount.accountNumber.slice(-4)}`
? `${this.props.translate('paymentMethodList.accountLastFour')} ${
bankAccount.accountNumber.slice(-4)
}`
: null;
combinedPaymentMethods.push({
type: MENU_ITEM,
Expand Down

0 comments on commit ae9cc84

Please sign in to comment.