Update quartz/components/Explorer.tsx - fixed typo

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Aniket Dhakane 2026-01-10 10:51:28 +05:30 committed by GitHub
parent a18c17f075
commit 65e36d9e6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,7 +71,7 @@ export default ((userOpts?: Partial<Options>) => {
const beforeComponents = (opts.components || []).filter( const beforeComponents = (opts.components || []).filter(
(c) => c.position === "before" || !c.position, (c) => c.position === "before" || !c.position,
) )
const afterCOmpoentns = (opts.components || []).filter( const afterComponents = (opts.components || []).filter(
(c) => c.position === "after" || !c.position, (c) => c.position === "after" || !c.position,
) )