Jacky Zhao
2023-09-20 52a172d1a4911080444ff797183e29ba8175741e
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())
  },
})
```