Skip to content

Commit

Permalink
Remove Disabled Fix Type
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskerr committed Nov 15, 2023
1 parent e3ebaec commit 0d35f74
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/zui/src/domain/updates/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type UpdateMode = "disabled" | "manual" | "startup" | "default"
export type UpdateMode = "manual" | "startup" | "default"

export interface Updater {
check(): Promise<string | null>
Expand Down
1 change: 0 additions & 1 deletion apps/zui/src/electron/run-main/run-configurations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export function runConfigurations() {
["On Startup & Daily", "default"],
["On Startup", "startup"],
["Manually", "manual"],
["Disabled", "disabled"],
],
defaultValue: "startup",
},
Expand Down
2 changes: 1 addition & 1 deletion apps/zui/src/views/update-window/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function useTemplate() {
}
case "not-available":
return {
title: "Update to Date!",
title: "Up to Date!",
button: ["OK", closeWindow],
}
case "available":
Expand Down

0 comments on commit 0d35f74

Please sign in to comment.