diff --git a/.github/workflows/electron.yml b/.github/workflows/electron.yml index 2bfa4355..4fe67f29 100644 --- a/.github/workflows/electron.yml +++ b/.github/workflows/electron.yml @@ -464,7 +464,7 @@ jobs: if: steps.check_asc_creds.outputs.has_credentials == 'true' && github.event.inputs.artifact_destination == 'submit' uses: ruby/setup-ruby@v1 with: - ruby-version: '3.2' + ruby-version: "3.2" bundler-cache: false - name: Install Fastlane diff --git a/electron/main.cjs b/electron/main.cjs index accffe28..cefd8194 100644 --- a/electron/main.cjs +++ b/electron/main.cjs @@ -43,7 +43,12 @@ if (!gotTheLock) { function createWindow() { const appVersion = app.getVersion(); const electronVersion = process.versions.electron; - const platform = process.platform === "win32" ? "Windows" : process.platform === "darwin" ? "macOS" : "Linux"; + const platform = + process.platform === "win32" + ? "Windows" + : process.platform === "darwin" + ? "macOS" + : "Linux"; mainWindow = new BrowserWindow({ width: 1200, @@ -68,7 +73,7 @@ function createWindow() { } mainWindow.webContents.setUserAgent( - `Termix-Desktop/${appVersion} (${platform}; Electron/${electronVersion})` + `Termix-Desktop/${appVersion} (${platform}; Electron/${electronVersion})`, ); if (isDev) {