taler-typescript-core

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

commit 28886113f7c45b338256e19e42498bc21cb109b7
parent ac3149060dcd71645016a562b678834fa68de477
Author: Florian Dold <dold@taler.net>
Date:   Sun,  6 Sep 2026 12:41:06 +0200

bank web UI: use browser HTTP for withdrawal cancellation

Inject the browser HTTP implementation into the bank integration client
used when cancelling a cash-acceptor withdrawal.

Diffstat:
Mpackages/libeufin-bank-webui/src/pages/BankFrame.tsx | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/packages/libeufin-bank-webui/src/pages/BankFrame.tsx b/packages/libeufin-bank-webui/src/pages/BankFrame.tsx @@ -24,6 +24,7 @@ import { assertUnreachable, } from "@gnu-taler/taler-util"; import { + BrowserFetchHttpLib, Footer, Header, Loading, @@ -334,6 +335,7 @@ function BankSettingsDialog({ try { const integration = new TalerBankIntegrationHttpClient( new URL("taler-integration/", active.backendBaseUrl).href, + { httpClient: new BrowserFetchHttpLib() }, ); const aborted = await integration.abortWithdrawalOperationById( active.operationId,