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