Skip to content

Commit f4cd708

Browse files
committed
chore: generate
1 parent c20f273 commit f4cd708

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/desktop/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const platform: Platform = {
8383

8484
update: async () => {
8585
if (!UPDATER_ENABLED || !update) return
86-
if(ostype() === "windows") await invoke("kill_sidecar")
86+
if (ostype() === "windows") await invoke("kill_sidecar")
8787
await update.install()
8888
},
8989

packages/desktop/src/updater.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export async function runUpdater({ alertOnFail }: { alertOnFail: boolean }) {
3535
if (!shouldUpdate) return
3636

3737
try {
38-
if(ostype() === "windows") await invoke("kill_sidecar")
38+
if (ostype() === "windows") await invoke("kill_sidecar")
3939
await update.install()
4040
} catch {
4141
await message("Failed to install update", { title: "Update Failed" })

0 commit comments

Comments
 (0)