Jacky Zhao
2023-09-20 6a9e6352e88aa9ff18e5b33cf2de442a250bd960
docs/features/explorer.md
@@ -152,7 +152,7 @@
  filterFn: (node) => {
    // set containing names of everything you want to filter out
    const omit = new Set(["authoring content", "tags", "hosting"])
    return omit.has(node.name.toLowerCase())
    return !omit.has(node.name.toLowerCase())
  },
})
```