diff --git a/packages/blockchain-wallet-v4-frontend/src/components/Flyout/model.tsx b/packages/blockchain-wallet-v4-frontend/src/components/Flyout/model.tsx
index aa5bda4f6ce..a9ddfa041f0 100644
--- a/packages/blockchain-wallet-v4-frontend/src/components/Flyout/model.tsx
+++ b/packages/blockchain-wallet-v4-frontend/src/components/Flyout/model.tsx
@@ -557,7 +557,7 @@ const renderBankText = (
): string | ReactElement => {
if ('agent' in value) {
// BeneficiaryType
- return value.name
+ return value.agent.bankName ?? value.name
}
if ('details' in value && value.details?.bankName) {
// BankTransferAccountType | BSPaymentMethodType
@@ -901,7 +901,7 @@ const BankWire = ({
- {beneficiary.name}
+ {beneficiary.agent.bankName ?? beneficiary.name}
Wire Account ending in {beneficiary.address.slice(-4)}
{type === 'DEPOSIT' && (
diff --git a/packages/blockchain-wallet-v4-frontend/src/scenes/Settings/General/LinkedWireBanks/template.success.tsx b/packages/blockchain-wallet-v4-frontend/src/scenes/Settings/General/LinkedWireBanks/template.success.tsx
index 042c79a248f..c6d642dd8a3 100644
--- a/packages/blockchain-wallet-v4-frontend/src/scenes/Settings/General/LinkedWireBanks/template.success.tsx
+++ b/packages/blockchain-wallet-v4-frontend/src/scenes/Settings/General/LinkedWireBanks/template.success.tsx
@@ -93,7 +93,7 @@ const Success: React.FC & Props> = ({
onBankClick(beneficiary)}>
}
- topLeftText={beneficiary.name}
+ topLeftText={beneficiary.agent.bankName ?? beneficiary.name}
topRightText={beneficiary.address}
bottomLeftText={
availableAmount && (