From e0d4e019056637cc8de65fb807dd446fb7dbcd67 Mon Sep 17 00:00:00 2001 From: Youwen Wu Date: Wed, 6 Mar 2024 22:02:33 -0800 Subject: [PATCH] feat: activate woke mode by default to comply with DEI --- client/src/lib/stores/settingsStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/lib/stores/settingsStore.ts b/client/src/lib/stores/settingsStore.ts index cbb96cd..817c741 100644 --- a/client/src/lib/stores/settingsStore.ts +++ b/client/src/lib/stores/settingsStore.ts @@ -15,7 +15,7 @@ export interface SettingsStoreData { export const defaults: SettingsStoreData = { disableAnnoyances: false, // disable non-critical notifications - goWoke: false, // go woke (for showing parents or other officials where DEI has taken over), disables "offensive" sequences + goWoke: true, // go woke (for showing parents or other officials where DEI has taken over), disables "offensive" sequences fastStartup: false, // skip the loading splash screen (for development purposes. Setting this from within the app has no effect.) randomWeight: 1, // the weight of random events (multiplied by the original probability) voiceLang: 'en-US', @@ -30,7 +30,7 @@ const createSequenceStore = () => { data: keyof SettingsStoreData, newValue: SettingsStoreData[typeof data] ) => { - update(store => { + update((store) => { // @ts-expect-error store[data] = newValue return store