taler-typescript-core

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

commit 68d711b2e7f096369c922a2fa340dd39bf2cb711
parent f658718b949e6b649a6d10568d7214306fdf2cfc
Author: Sebastian <sebasjm@gmail.com>
Date:   Tue,  4 Apr 2023 10:12:13 -0300

fix wrong function call

Diffstat:
Mpackages/merchant-backend-ui/src/pages/OfferTip.tsx | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/packages/merchant-backend-ui/src/pages/OfferTip.tsx b/packages/merchant-backend-ui/src/pages/OfferTip.tsx @@ -26,7 +26,6 @@ import { QR } from '../components/QR'; import "../css/pure-min.css"; import "../css/style.css"; import { Page, QRPlaceholder, WalletLink } from '../styled'; -import { ShowOrderDetails } from './ShowOrderDetails'; /** @@ -136,6 +135,6 @@ export function mount(): void { export function buildTimeRendering(): { head: string, body: string } { return { head: renderToString(<Head />), - body: renderToString(<ShowOrderDetails />) + body: renderToString(<OfferTip />) } }