gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated: fix #7468


From: gnunet
Subject: [taler-wallet-core] branch master updated: fix #7468
Date: Mon, 13 Feb 2023 14:55:32 +0100

This is an automated email from the git hooks/post-receive script.

sebasjm pushed a commit to branch master
in repository wallet-core.

The following commit(s) were added to refs/heads/master by this push:
     new bb6644367 fix #7468
bb6644367 is described below

commit bb6644367bc014fcc09e44a7b32c2f58861ac835
Author: Sebastian <sebasjm@gmail.com>
AuthorDate: Mon Feb 13 09:28:42 2023 -0300

    fix #7468
---
 .../src/wallet/Transaction.tsx                     | 27 +++++++++++++++-------
 1 file changed, 19 insertions(+), 8 deletions(-)

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
           <Fragment>
             <BankDetailsByPaytoType
               amount={raw}
@@ -463,6 +464,7 @@ export function TransactionView({
             </WarningBox>
           </Fragment>
         ) : (
+          //integrated bank withdrawal
           <Fragment>
             {!transaction.withdrawalDetails.confirmed &&
             transaction.withdrawalDetails.bankConfirmationUrl ? (
@@ -484,14 +486,23 @@ export function TransactionView({
                 </div>
               </InfoBox>
             ) : undefined}
-            {transaction.withdrawalDetails.confirmed && (
-              <InfoBox>
-                <i18n.Translate>
-                  Bank has confirmed the wire transfer. Waiting for the 
exchange
-                  to send the coins
-                </i18n.Translate>
-              </InfoBox>
-            )}
+            {transaction.withdrawalDetails.confirmed &&
+              !transaction.withdrawalDetails.reserveIsReady && (
+                <InfoBox>
+                  <i18n.Translate>
+                    Bank has confirmed the wire transfer. Waiting for the
+                    exchange to send the coins
+                  </i18n.Translate>
+                </InfoBox>
+              )}
+            {transaction.withdrawalDetails.confirmed &&
+              transaction.withdrawalDetails.reserveIsReady && (
+                <InfoBox>
+                  <i18n.Translate>
+                    Exchange is ready to send the coins, withdrawal in 
progress.
+                  </i18n.Translate>
+                </InfoBox>
+              )}
           </Fragment>
         )}
         <Part

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]