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, )