diff --git a/src/views/home/boards-list/boards-list.tsx b/src/views/home/boards-list/boards-list.tsx index 8bdc4826..ade581f7 100644 --- a/src/views/home/boards-list/boards-list.tsx +++ b/src/views/home/boards-list/boards-list.tsx @@ -101,6 +101,7 @@ const BoardsList = ({ multisub }: { multisub: MultisubSubplebbit[] }) => { const showOther = showAll || showWorksafeOnly; const showMisc = showAll || showNsfwOnly; const showAdult = showAll || showNsfwOnly; + const showMultiboards = showAll || showNsfwOnly; return (
@@ -605,18 +606,20 @@ const BoardsList = ({ multisub }: { multisub: MultisubSubplebbit[] }) => { )} {/* Column 6: Meta */} -
-

Multiboards

- -
    -
  • - All 5chan Directories -
  • -
  • - Subscriptions -
  • -
-
+ {showMultiboards && ( +
+

Multiboards

+ +
    +
  • + All 5chan Directories +
  • +
  • + Subscriptions +
  • +
+
+ )}
);