We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c98f616 commit d7718d4Copy full SHA for d7718d4
1 file changed
packages/desktop-electron/src/main/store.ts
@@ -7,7 +7,7 @@ const cache = new Map<string, Store>()
7
export function getStore(name = SETTINGS_STORE) {
8
const cached = cache.get(name)
9
if (cached) return cached
10
- const next = new Store({ name, fileExtension: "" })
+ const next = new Store({ name, fileExtension: "", accessPropertiesByDotNotation: false })
11
cache.set(name, next)
12
return next
13
}
0 commit comments