diff options
author | Sebastian <sebasjm@gmail.com> | 2023-04-07 17:30:01 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2023-04-07 17:30:01 -0300 |
commit | a3aa7d95d09c83794067c47df4a455c0e3f21806 (patch) | |
tree | 00837196305227fe6f7cbc7289f96b256d5de089 /packages/demobank-ui/src/pages/QrCodeSection.tsx | |
parent | 43ae414a55b84b1125c5e4377c6d485ca6c748e2 (diff) |
anon withdrawal confirmation, and fix error with infinity loop
Diffstat (limited to 'packages/demobank-ui/src/pages/QrCodeSection.tsx')
-rw-r--r-- | packages/demobank-ui/src/pages/QrCodeSection.tsx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/demobank-ui/src/pages/QrCodeSection.tsx b/packages/demobank-ui/src/pages/QrCodeSection.tsx index 8f85fff91..8613bfca7 100644 --- a/packages/demobank-ui/src/pages/QrCodeSection.tsx +++ b/packages/demobank-ui/src/pages/QrCodeSection.tsx @@ -14,16 +14,17 @@ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ +import { stringifyWithdrawUri, WithdrawUriResult } from "@gnu-taler/taler-util"; import { useTranslationContext } from "@gnu-taler/web-util/lib/index.browser"; import { h, VNode } from "preact"; import { useEffect } from "preact/hooks"; import { QR } from "../components/QR.js"; export function QrCodeSection({ - talerWithdrawUri, + withdrawUri, onAborted, }: { - talerWithdrawUri: string; + withdrawUri: WithdrawUriResult; onAborted: () => void; }): VNode { const { i18n } = useTranslationContext(); @@ -33,8 +34,9 @@ export function QrCodeSection({ //this hack manually triggers the tab update after the QR is in the DOM. // WebExtension will be using // https://developer.chrome.com/docs/extensions/reference/tabs/#event-onUpdated - document.title = `${document.title} ${talerWithdrawUri}`; + document.title = `${document.title} ${withdrawUri.withdrawalOperationId}`; }, []); + const talerWithdrawUri = stringifyWithdrawUri(withdrawUri); return ( <section id="main" class="content"> |