diff --git a/src/lib/store/blocked-content-store.ts b/src/lib/store/blocked-content-store.ts index 179e7db..cc22349 100644 --- a/src/lib/store/blocked-content-store.ts +++ b/src/lib/store/blocked-content-store.ts @@ -2,11 +2,13 @@ import { ALL_BLOCKING_GROUPS } from '$lib/logic/blocking-group-data'; import { persistentWritable } from './persistent-store'; import { StoreKey } from './store-keys'; -const getInitial = () => - Object.fromEntries(ALL_BLOCKING_GROUPS.map((key) => [key, false])) as Record< - kurosearch.BlockingGroup, - boolean - >; +const getInitial = () => ({ + Loli: true, + 'Animal-Related': false, + 'Non-Consentual': false, + Gore: false, + Scat: false +}); const createBlockedContentStore = () => { const { subscribe, set } = persistentWritable(StoreKey.BlockedContent, getInitial());