commit c331541807ac01908336142326b475c472f19b0d
parent ebd140b24a4d1efea5fc9f96cc945a785f3725c7
Author: ms <ms@taler.net>
Date: Thu, 23 Dec 2021 19:11:30 +0100
bank: fix syntax
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/bank/src/pages/home/index.tsx b/packages/bank/src/pages/home/index.tsx
@@ -496,7 +496,7 @@ function Account(props: any) {
return (<div>
<p>Scan the following QR code, and then confirm!</p>
<div>{QR({text: talerWithdrawUri})}</div>
- <a href="{talerWithdrawUri}"></a>
+ <a href={talerWithdrawUri}></a>
<p>Withdraw address: <pre>{talerWithdrawUri}</pre></p>
{props.children}
</div>);