From c60b3d5e3444e46587c1143dab784c53204070ae Mon Sep 17 00:00:00 2001
From: Ikko Eltociear Ashimine <eltociear@gmail.com>
Date: Tue, 22 Aug 2023 16:16:21 +0000
Subject: [PATCH] fix: typo in bootstrap-cli.mjs (#394)

---
 quartz/components/pages/FolderContent.tsx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/quartz/components/pages/FolderContent.tsx b/quartz/components/pages/FolderContent.tsx
index 1528aea..6c5fd7d 100644
--- a/quartz/components/pages/FolderContent.tsx
+++ b/quartz/components/pages/FolderContent.tsx
@@ -12,7 +12,7 @@
   const { tree, fileData, allFiles } = props
   const folderSlug = _stripSlashes(simplifySlug(fileData.slug!))
   const allPagesInFolder = allFiles.filter((file) => {
-    const fileSlug = simplifySlug(file.slug!)
+    const fileSlug = _stripSlashes(simplifySlug(file.slug!))
     const prefixed = fileSlug.startsWith(folderSlug) && fileSlug !== folderSlug
     const folderParts = folderSlug.split(path.posix.sep)
     const fileParts = fileSlug.split(path.posix.sep)

--
Gitblit v1.10.0