From 18d64eecb11f99da8f103f476db2972955fcba09 Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 28 Feb 2026 04:53:14 +0100 Subject: [PATCH] fix: wrap frame.render() in array to satisfy Body children type --- quartz/components/renderPage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quartz/components/renderPage.tsx b/quartz/components/renderPage.tsx index 84e649cec..558d2be54 100644 --- a/quartz/components/renderPage.tsx +++ b/quartz/components/renderPage.tsx @@ -263,7 +263,7 @@ export function renderPage(
- {frame.render({ + {[frame.render({ componentData, head: Head, header, @@ -273,7 +273,7 @@ export function renderPage( left, right, footer: Footer, - })} + })]}