Skip to content
This repository was archived by the owner on Aug 6, 2021. It is now read-only.

Commit 9c08436

Browse files
committed
Fix changed value in card and add metal image
1 parent f33cd2c commit 9c08436

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
127 KB
Loading

src/react/Pages/Cards/VirtualAccountNumbersDialog.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class VirtualAccountNumbersDialog extends React.Component {
3232

3333
if (cardInfo.type !== "MASTERCARD_VIRTUAL") return null;
3434

35-
const virtualCardComponents = cardInfo.primary_account_numbers_virtual ? (
36-
cardInfo.primary_account_numbers_virtual
35+
const virtualCardComponents = cardInfo.primary_account_numbers ? (
36+
cardInfo.primary_account_numbers
3737
.filter(virtualNumber => virtualNumber.status === "ACTIVE")
3838
.map(virtualNumber => {
3939
const accountInfo = accounts.find(account => {

0 commit comments

Comments
 (0)