summaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/pages/WithdrawalQRCode.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-04-07 18:59:47 -0300
committerSebastian <sebasjm@gmail.com>2023-04-07 18:59:47 -0300
commit877a4bb1328661ae2e97d764c26e2bc0ff1f46fe (patch)
tree05fc172f85111c54a438b020c968f56d6f5fde58 /packages/demobank-ui/src/pages/WithdrawalQRCode.tsx
parentcfe7129c4ecaa3057d5e47040f0a9efd8ed0317e (diff)
downloadwallet-core-877a4bb1328661ae2e97d764c26e2bc0ff1f46fe.tar.gz
wallet-core-877a4bb1328661ae2e97d764c26e2bc0ff1f46fe.tar.bz2
wallet-core-877a4bb1328661ae2e97d764c26e2bc0ff1f46fe.zip
fix #7743
Diffstat (limited to 'packages/demobank-ui/src/pages/WithdrawalQRCode.tsx')
-rw-r--r--packages/demobank-ui/src/pages/WithdrawalQRCode.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/demobank-ui/src/pages/WithdrawalQRCode.tsx b/packages/demobank-ui/src/pages/WithdrawalQRCode.tsx
index 9c5f83eca..a20b2e90d 100644
--- a/packages/demobank-ui/src/pages/WithdrawalQRCode.tsx
+++ b/packages/demobank-ui/src/pages/WithdrawalQRCode.tsx
@@ -67,7 +67,6 @@ export function WithdrawalQRCode({
) {
return <div>operation not found</div>;
}
- console.log("result", result);
onLoadNotOk();
return handleNotOkResult(i18n)(result);
}
@@ -77,7 +76,7 @@ export function WithdrawalQRCode({
if (data.aborted || data.confirmation_done) {
// signal that this withdrawal is aborted
// will redirect to account info
- notifyInfo(i18n.str`Operation was completed from other session`);
+ notifyInfo(i18n.str`Operation completed`);
onAborted();
return <Loading />;
}