Skip to content

Commit d7718d4

Browse files
authored
refactor(electron): update store configuration (#22597)
1 parent c98f616 commit d7718d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/desktop-electron/src/main

packages/desktop-electron/src/main/store.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const cache = new Map<string, Store>()
77
export function getStore(name = SETTINGS_STORE) {
88
const cached = cache.get(name)
99
if (cached) return cached
10-
const next = new Store({ name, fileExtension: "" })
10+
const next = new Store({ name, fileExtension: "", accessPropertiesByDotNotation: false })
1111
cache.set(name, next)
1212
return next
1313
}

0 commit comments

Comments
 (0)