From 65e36d9e6ce09cdd86be056e6b252db31e455d42 Mon Sep 17 00:00:00 2001 From: Aniket Dhakane <55570910+watashiwaaniket@users.noreply.github.com> Date: Sat, 10 Jan 2026 10:51:28 +0530 Subject: [PATCH] Update quartz/components/Explorer.tsx - fixed typo Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- quartz/components/Explorer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quartz/components/Explorer.tsx b/quartz/components/Explorer.tsx index bd5f1db9e..5113d8930 100644 --- a/quartz/components/Explorer.tsx +++ b/quartz/components/Explorer.tsx @@ -71,7 +71,7 @@ export default ((userOpts?: Partial) => { const beforeComponents = (opts.components || []).filter( (c) => c.position === "before" || !c.position, ) - const afterCOmpoentns = (opts.components || []).filter( + const afterComponents = (opts.components || []).filter( (c) => c.position === "after" || !c.position, )