From bfbb2f474896780410b6ae0716add20b0baa462a Mon Sep 17 00:00:00 2001 From: Benny Joo Date: Wed, 15 Nov 2023 13:14:23 +0000 Subject: [PATCH] Fix client component error --- .../web/app/future/(shared-page-wrapper)/(no-layout)/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/app/future/(shared-page-wrapper)/(no-layout)/layout.tsx b/apps/web/app/future/(shared-page-wrapper)/(no-layout)/layout.tsx index d78c7aca05edaf..c079ba0ad88fb4 100644 --- a/apps/web/app/future/(shared-page-wrapper)/(no-layout)/layout.tsx +++ b/apps/web/app/future/(shared-page-wrapper)/(no-layout)/layout.tsx @@ -13,7 +13,7 @@ export default async function WrapperWithoutLayout({ children }: WrapperWithoutL const nonce = h.get("x-nonce") ?? undefined; return ( - page} requiresLicense={false} nonce={nonce} themeBasis={null}> + {children} );