Skip to content

Commit

Permalink
fix: remove required values for the stored configuration to avoid err…
Browse files Browse the repository at this point in the history
…ors when installing

Signed-off-by: Alejandro Parcet <[email protected]>
  • Loading branch information
alexpargon committed Sep 6, 2024
1 parent f608003 commit 459ca3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/managers/Store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const schema: Schema<StorageType> = {
isStandardView: true,
autoUpdate: undefined,
},
required: ["backupFolder", "language", "darkMode", "showDefaults"],
required: [],
},
neurons: {
type: "array",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/utils/Store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const schema: Schema<StorageType> = {
isStandardView: true,
autoUpdate: undefined,
},
required: ["backupFolder", "language", "darkMode", "showDefaults"],
required: [],
},
neurons: {
type: "array",
Expand Down

0 comments on commit 459ca3f

Please sign in to comment.