fix wrong function call

This commit is contained in:
Sebastian 2023-04-04 10:12:13 -03:00
parent f658718b94
commit 68d711b2e7
No known key found for this signature in database
GPG Key ID: 173909D1A5F66069

View File

@ -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 />)
}
}