diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx index 94d853d9a..d91f621db 100644 --- a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx @@ -413,6 +413,7 @@ export function TransactionView({ {transaction.extendedStatus !== ExtendedStatus.Pending ? undefined : transaction.withdrawalDetails .type === WithdrawalType.ManualTransfer ? ( + //manual withdrawal ) : ( + //integrated bank withdrawal {!transaction.withdrawalDetails.confirmed && transaction.withdrawalDetails.bankConfirmationUrl ? ( @@ -484,14 +486,23 @@ export function TransactionView({ ) : undefined} - {transaction.withdrawalDetails.confirmed && ( - - - Bank has confirmed the wire transfer. Waiting for the exchange - to send the coins - - - )} + {transaction.withdrawalDetails.confirmed && + !transaction.withdrawalDetails.reserveIsReady && ( + + + Bank has confirmed the wire transfer. Waiting for the + exchange to send the coins + + + )} + {transaction.withdrawalDetails.confirmed && + transaction.withdrawalDetails.reserveIsReady && ( + + + Exchange is ready to send the coins, withdrawal in progress. + + + )} )}