Skip to content

Commit f711b65

Browse files
committed
chore: fix formatting in cli/index.ts (pre-existing issue)
1 parent 38208a9 commit f711b65

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/cli/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ if (subcommand === "run") {
4242
process.argv.splice(2, 1);
4343
// eslint-disable-next-line @typescript-eslint/no-require-imports
4444
require("./api");
45-
} else if (subcommand === "desktop" || (isElectron && (subcommand === undefined || isElectronLaunchArg))) {
45+
} else if (
46+
subcommand === "desktop" ||
47+
(isElectron && (subcommand === undefined || isElectronLaunchArg))
48+
) {
4649
// Explicit `mux desktop`, or Electron runtime with no subcommand / Electron launch args
4750
launchDesktop();
4851
} else {

0 commit comments

Comments
 (0)