Only write tree to localStorage during prenav event

This commit is contained in:
Emile Bangma 2025-06-19 22:12:50 +02:00 committed by GitHub
parent 08b2228a43
commit b31acc6f0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -74,9 +74,6 @@ function toggleFolder(evt: MouseEvent) {
collapsed: isCollapsed,
})
}
const stringifiedFileTree = JSON.stringify(currentExplorerState)
localStorage.setItem("fileTree", stringifiedFileTree)
}
function createFileNode(currentSlug: FullSlug, node: FileTrieNode): HTMLLIElement {