Rahmat Ardiansyah
2026-01-08 c2dcc63b5f0998f87e0aeb1a3a61291aded83639
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
  },
})
```