diff --git a/quartz/components/Explorer.tsx b/quartz/components/Explorer.tsx index 4c8eba654..d4b48815f 100644 --- a/quartz/components/Explorer.tsx +++ b/quartz/components/Explorer.tsx @@ -68,9 +68,7 @@ export default ((userOpts?: Partial) => { // Get all folders of tree. Initialize with collapsed state // Stringify to pass json tree as data attribute ([data-tree]) - const folders = fileTree.getFolderPaths( - opts.folderDefaultState === "collapsed" - ) + const folders = fileTree.getFolderPaths(opts.folderDefaultState === "collapsed") jsonTree = JSON.stringify(folders) }