Jon Erling Hustadnes
2026-01-05 5208a96a3768e92d203e3d2c6fd3a79e21be64be
docs/features/explorer.md
@@ -162,7 +162,7 @@
Component.Explorer({
  filterFn: (node) => {
    // exclude files with the tag "explorerexclude"
    return node.data.tags?.includes("explorerexclude") !== true
    return node.data?.tags?.includes("explorerexclude") !== true
  },
})
```