fix: default value of zen mode
parent
1cbaf68ea4
commit
b3ff8a457d
|
@ -21,13 +21,14 @@ export interface UserSettings {
|
||||||
colorMode?: ColorMode
|
colorMode?: ColorMode
|
||||||
fontSize: FontSize
|
fontSize: FontSize
|
||||||
language: string
|
language: string
|
||||||
zenMode?: boolean
|
zenMode: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getDefaultUserSettings(): UserSettings {
|
export function getDefaultUserSettings(): UserSettings {
|
||||||
return {
|
return {
|
||||||
language: DEFAULT_LANGUAGE,
|
language: DEFAULT_LANGUAGE,
|
||||||
fontSize: DEFAULT_FONT_SIZE,
|
fontSize: DEFAULT_FONT_SIZE,
|
||||||
|
zenMode: false,
|
||||||
featureFlags: {},
|
featureFlags: {},
|
||||||
wellnessSettings: {},
|
wellnessSettings: {},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue