diff --git a/src/views/home/boards-list/boards-list.tsx b/src/views/home/boards-list/boards-list.tsx
index 7a9b53ad..e30ede60 100644
--- a/src/views/home/boards-list/boards-list.tsx
+++ b/src/views/home/boards-list/boards-list.tsx
@@ -82,10 +82,10 @@ const BoardsList = ({ multisub }: { multisub: MultisubSubplebbit[] }) => {
const showWorksafeOnly = boardFilter === 'worksafe';
// Category visibility based on filter
- const showJapaneseCulture = showAll || showWorksafeOnly;
+ const showJapaneseCulture = showAll || showWorksafeOnly || showNsfwOnly;
const showVideoGames = showAll || showWorksafeOnly;
const showInterests = showAll || showWorksafeOnly;
- const showCreative = showAll || showWorksafeOnly;
+ const showCreative = showAll || showWorksafeOnly || showNsfwOnly;
const showOther = showAll || showWorksafeOnly;
const showMisc = showAll || showNsfwOnly;
const showAdult = showAll || showNsfwOnly;
@@ -105,56 +105,66 @@ const BoardsList = ({ multisub }: { multisub: MultisubSubplebbit[] }) => {
<>
Japanese Culture
- -
- e.preventDefault()} className={styles.placeholder}>
- Anime & Manga
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Anime/Cute
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Anime/Wallpapers
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Mecha
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Cosplay & EGL
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Cute/Male
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Flash
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Transportation
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Otaku Culture
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Virtual YouTubers
-
-
+ {(showAll || showWorksafeOnly) && (
+ <>
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Anime & Manga
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Anime/Cute
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Anime/Wallpapers
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Mecha
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Cosplay & EGL
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Cute/Male
+
+
+ >
+ )}
+ {(showAll || showNsfwOnly) && (
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Flash
+
+
+ )}
+ {(showAll || showWorksafeOnly) && (
+ <>
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Transportation
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Otaku Culture
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Virtual YouTubers
+
+
+ >
+ )}
>
)}
@@ -299,76 +309,90 @@ const BoardsList = ({ multisub }: { multisub: MultisubSubplebbit[] }) => {
Creative
- -
- e.preventDefault()} className={styles.placeholder}>
- Oekaki
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Papercraft & Origami
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Photography
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Food & Cooking
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Artwork/Critique
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Wallpapers/General
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Literature
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Music
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Fashion
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- 3DCG
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Graphic Design
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Do-It-Yourself
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Worksafe GIF
-
-
- -
- e.preventDefault()} className={styles.placeholder}>
- Quests
-
-
+ {(showAll || showNsfwOnly) && (
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Oekaki
+
+
+ )}
+ {(showAll || showWorksafeOnly) && (
+ <>
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Papercraft & Origami
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Photography
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Food & Cooking
+
+
+ >
+ )}
+ {(showAll || showNsfwOnly) && (
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Artwork/Critique
+
+
+ )}
+ {(showAll || showNsfwOnly) && (
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Wallpapers/General
+
+
+ )}
+ {(showAll || showWorksafeOnly) && (
+ <>
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Literature
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Music
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Fashion
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ 3DCG
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Graphic Design
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Do-It-Yourself
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Worksafe GIF
+
+
+ -
+ e.preventDefault()} className={styles.placeholder}>
+ Quests
+
+
+ >
+ )}
)}