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
|
||||
fontSize: FontSize
|
||||
language: string
|
||||
zenMode?: boolean
|
||||
zenMode: boolean
|
||||
}
|
||||
|
||||
export function getDefaultUserSettings(): UserSettings {
|
||||
return {
|
||||
language: DEFAULT_LANGUAGE,
|
||||
fontSize: DEFAULT_FONT_SIZE,
|
||||
zenMode: false,
|
||||
featureFlags: {},
|
||||
wellnessSettings: {},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue