From 36bd9c5c0f6044655ae99f9fa34b34615af2f644 Mon Sep 17 00:00:00 2001 From: plebeius Date: Thu, 6 Nov 2025 15:52:45 +0100 Subject: [PATCH] feat(boards-list): mark Flash, Oekaki, Artwork/Critique, Wallpapers/General as NSFW --- src/views/home/boards-list/boards-list.tsx | 268 +++++++++++---------- 1 file changed, 146 insertions(+), 122 deletions(-) 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

)} @@ -299,76 +309,90 @@ const BoardsList = ({ multisub }: { multisub: MultisubSubplebbit[] }) => {

Creative

)}