Skip to content

Commit

Permalink
docs: fix explorer example (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
benschlegel authored Sep 18, 2023
1 parent 6a2e0b3 commit 0d3cf29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/features/explorer.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ Component.Explorer({
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())
},
})
```
Expand Down

0 comments on commit 0d3cf29

Please sign in to comment.