From 70e029d151ccbb9aeab30a0f811b9f529b7f8818 Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Wed, 20 Sep 2023 20:52:29 +0000
Subject: [PATCH] Revert "docs: wording changes for offline support"

---
 docs/features/explorer.md |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/docs/features/explorer.md b/docs/features/explorer.md
index cb63e40..6f941b8 100644
--- a/docs/features/explorer.md
+++ b/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())
   },
 })
 ```

--
Gitblit v1.10.0