mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 00:19:59 +00:00
fix: default value of zen mode
This commit is contained in:
parent
1cbaf68ea4
commit
b3ff8a457d
1 changed files with 2 additions and 1 deletions
|
@ -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 a new issue