Parcourir la source

chore: format code

GitHub Action il y a 4 mois
Parent
commit
6db822fd92
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      packages/tauri/src/updater.ts

+ 3 - 1
packages/tauri/src/updater.ts

@@ -20,7 +20,9 @@ export async function runUpdater(onDownloadEvent?: (progress: DownloadEvent) =>
     return false
     return false
   }
   }
 
 
-  const shouldUpdate = await ask(`Version ${update.version} of OpenCode has been downloaded, would you like to install it and relaunch?`)
+  const shouldUpdate = await ask(
+    `Version ${update.version} of OpenCode has been downloaded, would you like to install it and relaunch?`,
+  )
   if (!shouldUpdate) return
   if (!shouldUpdate) return
 
 
   try {
   try {