Skip to content

Commit

Permalink
Fix client component error
Browse files Browse the repository at this point in the history
  • Loading branch information
hbjORbj committed Nov 15, 2023
1 parent 9d1bb99 commit bfbb2f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default async function WrapperWithoutLayout({ children }: WrapperWithoutL
const nonce = h.get("x-nonce") ?? undefined;

return (
<PageWrapper getLayout={(page) => page} requiresLicense={false} nonce={nonce} themeBasis={null}>
<PageWrapper getLayout={null} requiresLicense={false} nonce={nonce} themeBasis={null}>
{children}
</PageWrapper>
);
Expand Down

0 comments on commit bfbb2f4

Please sign in to comment.