feat: activate woke mode by default to comply with DEI
This commit is contained in:
parent
9784e8b17a
commit
e0d4e01905
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue