diff --git a/src/interface/hosted-buttons.js b/src/interface/hosted-buttons.js index de5e771278..6c2872b74b 100644 --- a/src/interface/hosted-buttons.js +++ b/src/interface/hosted-buttons.js @@ -7,6 +7,7 @@ import { getCardFormComponent, type CardFormComponent, } from "../zoid/card-form"; +import { getQRCodeComponent, type QRCodeComponent } from "../zoid/qr-code"; import { getCheckoutComponent, type CheckoutComponent } from "../zoid/checkout"; import type { LazyExport, LazyProtectedExport } from "../types"; import { protectedExport } from "../lib"; @@ -23,6 +24,10 @@ export const CardForm: LazyProtectedExport = { __get__: () => protectedExport(getCardFormComponent()), }; +export const QRCode: LazyProtectedExport = { + __get__: () => protectedExport(getQRCodeComponent()), +}; + export function setup() { getButtonsComponent(); getCheckoutComponent();