dependabot[bot]
2026-01-27 ec00a40aefca73596ab76e3ebe3a8e1129b43688
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
  },
})
```