aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backend-ui
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-04-04 10:12:13 -0300
committerSebastian <sebasjm@gmail.com>2023-04-04 15:11:27 -0300
commit68d711b2e7f096369c922a2fa340dd39bf2cb711 (patch)
treea2bc6a79549d6337ea980b8b418bd8a60aaa7613 /packages/merchant-backend-ui
parentf658718b949e6b649a6d10568d7214306fdf2cfc (diff)
downloadwallet-core-68d711b2e7f096369c922a2fa340dd39bf2cb711.tar.xz
fix wrong function call
Diffstat (limited to 'packages/merchant-backend-ui')
-rw-r--r--packages/merchant-backend-ui/src/pages/OfferTip.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/merchant-backend-ui/src/pages/OfferTip.tsx b/packages/merchant-backend-ui/src/pages/OfferTip.tsx
index 6df959028..d32072282 100644
--- 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 />)
}
}