Skip to content

Commit e6176a9

Browse files
Brendonovichbalcsida
authored andcommitted
electron: remove file extension from electron-store wrapper (anomalyco#19082)
1 parent 7f7a0a7 commit e6176a9

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 })
10+
const next = new Store({ name, fileExtension: "" })
1111
cache.set(name, next)
1212
return next
1313
}

0 commit comments

Comments
 (0)