From 51143163c81a218e3f88807924505deb5e98ed7b Mon Sep 17 00:00:00 2001 From: Ayo Date: Fri, 20 Oct 2023 11:24:40 +0200 Subject: [PATCH] refactor: remove console.log --- routes/[...index].ts | 1 - 1 file changed, 1 deletion(-) diff --git a/routes/[...index].ts b/routes/[...index].ts index ef591ee..7afa68d 100644 --- a/routes/[...index].ts +++ b/routes/[...index].ts @@ -249,7 +249,6 @@ async function useFragments(html: string) { function replaceSlots(fragmentNode, node) { walkSync(fragmentNode, (n) => { if (n.type === ELEMENT_NODE && n.name === "slot") { - console.log(n); const index = n.parent.children.indexOf(n); n.parent.children.splice(index, 1, ...node.children); }