taler-typescript-core

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

commit cee1b8001284adbe5e2cf506435b37db26ec7987
parent 0ba479c6e764815f2b4ec48649378cc488140ab6
Author: Sebastian <sebasjm@gmail.com>
Date:   Sat, 18 Feb 2023 10:48:49 -0300

disable public account

Diffstat:
Mpackages/demobank-ui/src/pages/BankFrame.tsx | 21+++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/packages/demobank-ui/src/pages/BankFrame.tsx b/packages/demobank-ui/src/pages/BankFrame.tsx @@ -28,6 +28,8 @@ import { import { useBusinessAccountDetails } from "../hooks/circuit.js"; import { bankUiSettings } from "../settings.js"; +const IS_PUBLIC_ACCOUNT_ENABLED = false; + const logger = new Logger("BankFrame"); function MaybeBusinessButton({ @@ -89,12 +91,19 @@ export function BankFrame({ </h1> {maybeDemoContent( <p> - <i18n.Translate> - This part of the demo shows how a bank that supports Taler - directly would work. In addition to using your own bank account, - you can also see the transaction history of some{" "} - <a href="/public-accounts">Public Accounts</a>. - </i18n.Translate> + {IS_PUBLIC_ACCOUNT_ENABLED ? ( + <i18n.Translate> + This part of the demo shows how a bank that supports Taler + directly would work. In addition to using your own bank + account, you can also see the transaction history of some{" "} + <a href="/public-accounts">Public Accounts</a>. + </i18n.Translate> + ) : ( + <i18n.Translate> + This part of the demo shows how a bank that supports Taler + directly would work. + </i18n.Translate> + )} </p>, )} </div>