gnunet-svn
[Top][All Lists]
Advanced

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

[taler-wallet-core] branch master updated (eb1500e51 -> 0b044475a)


From: gnunet
Subject: [taler-wallet-core] branch master updated (eb1500e51 -> 0b044475a)
Date: Mon, 19 Feb 2024 19:23:08 +0100

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

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

    from eb1500e51 get rid of deprecated/unused types
     new 12a7294ce fix #8445
     new 0b044475a removing deprecated reverse function

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 packages/demobank-ui/src/pages/WalletWithdrawForm.tsx     | 6 ++++--
 packages/taler-wallet-webextension/src/wallet/History.tsx | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx 
b/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
index 196ee9d63..ecb3eb4fc 100644
--- a/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
+++ b/packages/demobank-ui/src/pages/WalletWithdrawForm.tsx
@@ -85,10 +85,12 @@ function OldWithdrawalForm({
       wopid: bankState.currentWithdrawalOperationId,
     });
     return (
-      <Attention type="warning" title={i18n.str`There is an operation 
already`}>
+      <Attention type="warning" title={i18n.str`There is an operation 
already`} onClose={() => {
+        updateBankState("currentWithdrawalOperationId", undefined);
+      }}>
         <span ref={focus ? doAutoFocus : undefined} />
         <i18n.Translate>
-          Complete or cancel the operation in
+          Complete the operation in
         </i18n.Translate>{" "}
         <a
           class="font-semibold text-yellow-700 hover:text-yellow-600"
diff --git a/packages/taler-wallet-webextension/src/wallet/History.tsx 
b/packages/taler-wallet-webextension/src/wallet/History.tsx
index fed446cad..58a437c92 100644
--- a/packages/taler-wallet-webextension/src/wallet/History.tsx
+++ b/packages/taler-wallet-webextension/src/wallet/History.tsx
@@ -110,7 +110,7 @@ export function HistoryPage({
       balances={state.response.b.balances}
       goToWalletManualWithdraw={goToWalletManualWithdraw}
       goToWalletDeposit={goToWalletDeposit}
-      transactions={[...state.response.tx.transactions].reverse()}
+      transactions={state.response.tx.transactions}
     />
   );
 }

-- 
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]