diff --git a/src/pages/settings/Wallet/PaymentMethodList.js b/src/pages/settings/Wallet/PaymentMethodList.js index 0c708442cec6..d5bb268f0f86 100644 --- a/src/pages/settings/Wallet/PaymentMethodList.js +++ b/src/pages/settings/Wallet/PaymentMethodList.js @@ -227,9 +227,10 @@ function PaymentMethodList({ // In the case a user has been assigned multiple physical Expensify Cards under one domain, display the Card with PAN const expensifyCardDescription = numberPhysicalExpensifyCards > 1 ? CardUtils.getCardDescription(card.cardID) : translate('walletPage.expensifyCard'); + const cartTitle = card.lastFourPAN ? `${card.bank} - ${card.lastFourPAN}` : card.bank; return { key: card.cardID, - title: isExpensifyCard ? expensifyCardDescription : card.cardName, + title: isExpensifyCard ? expensifyCardDescription : cartTitle, description: card.domainName, onPress: isExpensifyCard ? () => Navigation.navigate(ROUTES.SETTINGS_WALLET_DOMAINCARD.getRoute(card.domainName)) : () => {}, shouldShowRightIcon: isExpensifyCard,