fix: don't consider 'anti' tag as nsfw tag

plebchan shouldn't consider 'vulgar' or 'anti' as nsfw tags, unlike more sfw-oriented plebbit clients like seedit
This commit is contained in:
Tom (plebeius.eth)
2024-06-11 10:25:25 +02:00
parent 841c6c4101
commit 62b4c71eb5
+2 -1
View File
@@ -11,7 +11,8 @@ import PopularThreadsBox from './popular-threads-box';
import BoardsBox from './boards-box';
// https://github.com/plebbit/temporary-default-subplebbits/blob/master/README.md
export const nsfwTags = ['adult', 'anti', 'gore'];
// plebchan shouldn't consider 'vulgar' or 'anti' as nsfw tags, unlike more sfw-oriented clients
export const nsfwTags = ['adult', 'gore'];
const SearchBar = () => {
const searchInputRef = useRef<HTMLInputElement>(null);