aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/pages/home/BankFrame.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/demobank-ui/src/pages/home/BankFrame.tsx')
-rw-r--r--packages/demobank-ui/src/pages/home/BankFrame.tsx19
1 files changed, 1 insertions, 18 deletions
diff --git a/packages/demobank-ui/src/pages/home/BankFrame.tsx b/packages/demobank-ui/src/pages/home/BankFrame.tsx
index 9b4bc4567..2d405e58c 100644
--- a/packages/demobank-ui/src/pages/home/BankFrame.tsx
+++ b/packages/demobank-ui/src/pages/home/BankFrame.tsx
@@ -75,13 +75,7 @@ export function BankFrame(Props: any): VNode {
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"
- onClick={goPublicAccounts(pageStateSetter)}
- >
- Public Accounts
- </a>
- .
+ <a href="/public-accounts">Public Accounts</a>.
</i18n.Translate>
</p>,
)}
@@ -134,17 +128,6 @@ function maybeDemoContent(content: VNode): VNode {
return <Fragment />;
}
-/**
- * Bring the state to show the public accounts page.
- */
-function goPublicAccounts(pageStateSetter: StateUpdater<PageStateType>) {
- return () =>
- pageStateSetter((prevState) => ({
- ...prevState,
- showPublicHistories: true,
- }));
-}
-
function ErrorBanner(Props: any): VNode | null {
const [pageState, pageStateSetter] = Props.pageState;
// const { i18n } = useTranslationContext();