Skip to content
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
1 change: 1 addition & 0 deletions components/Card/CardDepositExternalForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ export default function CardDepositExternalForm() {
type: 'error',
text1: 'External deposits not available',
text2: 'This card does not support deposits from external wallet',
props: { badgeText: '' },
});
return;
}
Expand Down
2 changes: 2 additions & 0 deletions components/Card/CardDepositInternalForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -928,6 +928,7 @@ export default function CardDepositInternalForm() {
type: 'error',
text1: 'Deposits not available',
text2: 'This card does not support deposits to the funding chain',
props: { badgeText: '' },
});
return;
}
Expand Down Expand Up @@ -1054,6 +1055,7 @@ export default function CardDepositInternalForm() {
type: 'error',
text1: 'Deposits not available',
text2: 'This card does not support deposits to the funding chain',
props: { badgeText: '' },
});
return;
}
Expand Down
1 change: 1 addition & 0 deletions hooks/useCardDeposit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ const useCardDeposit = (): CardDepositResult => {
type: 'error',
text1: 'Deposits not available',
text2: 'This card does not support deposits',
props: { badgeText: '' },
});
return;
}
Expand Down
Loading