From bb6644367bc014fcc09e44a7b32c2f58861ac835 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 13 Feb 2023 09:28:42 -0300 Subject: fix #7468 --- .../src/wallet/Transaction.tsx | 27 +++++++++++++++------- 1 file changed, 19 insertions(+), 8 deletions(-) (limited to 'packages/taler-wallet-webextension/src/wallet') 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. + + + )} )}