Andrew G. Dunn
2026-03-02 9576701d8532b9697df62c96d7c8676afd985b2d
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
  },
})
```