feat: activate woke mode by default to comply with DEI

This commit is contained in:
Youwen Wu 2024-03-06 22:02:33 -08:00
parent 9784e8b17a
commit e0d4e01905
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -15,7 +15,7 @@ export interface SettingsStoreData {
export const defaults: SettingsStoreData = { export const defaults: SettingsStoreData = {
disableAnnoyances: false, // disable non-critical notifications 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.) 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) randomWeight: 1, // the weight of random events (multiplied by the original probability)
voiceLang: 'en-US', voiceLang: 'en-US',
@ -30,7 +30,7 @@ const createSequenceStore = () => {
data: keyof SettingsStoreData, data: keyof SettingsStoreData,
newValue: SettingsStoreData[typeof data] newValue: SettingsStoreData[typeof data]
) => { ) => {
update(store => { update((store) => {
// @ts-expect-error // @ts-expect-error
store[data] = newValue store[data] = newValue
return store return store