taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit 0b044475a96ae140754ce478af41fc24424d7cc3
parent 12a7294ce9c35da82b052f472579c7fe9479ca84
Author: Sebastian <sebasjm@gmail.com>
Date:   Mon, 19 Feb 2024 15:23:02 -0300

removing deprecated reverse function

Diffstat:
Mpackages/taler-wallet-webextension/src/wallet/History.tsx | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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} /> ); }