From 00fd86a3b7f3928e6b26701f13ce5f60435ad056 Mon Sep 17 00:00:00 2001 From: Harv Date: Sat, 3 May 2025 07:41:23 +0000 Subject: [PATCH] clean up --- quartz/components/Group.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quartz/components/Group.tsx b/quartz/components/Group.tsx index d83d24cb7..55f122ffa 100644 --- a/quartz/components/Group.tsx +++ b/quartz/components/Group.tsx @@ -7,9 +7,7 @@ interface GroupConfig { export default ((config: GroupConfig) => { const Group: QuartzComponent = (props: QuartzComponentProps) => - config.components - .map((c: QuartzComponent) => ({ component: c })) - .map((it: { component: QuartzComponent }) => ) + config.components.map((C: QuartzComponent) => ) Group.afterDOMLoaded = concatenateResources(...config.components.map((c) => c.afterDOMLoaded)) Group.beforeDOMLoaded = concatenateResources(...config.components.map((c) => c.beforeDOMLoaded))