Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
VerteDinde committed Feb 23, 2022
1 parent a47b551 commit 5fda58f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/core/src/api/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default async ({
args = ['--inspect' as string | number].concat(args);
}
if (inspectBrk) {
args = ['--inspect-brk' as (string|number)].concat(args);
args = ['--inspect-brk' as string | number].concat(args);
}

let spawned!: ElectronProcess;
Expand Down

0 comments on commit 5fda58f

Please sign in to comment.