Skip to content

Commit 2fa43f4

Browse files
committed
type: unify boolean code style using type inference
1 parent fe393e5 commit 2fa43f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ async function runWebClient(args: Args): Promise<void> {
7373
);
7474

7575
const abort = new AbortController();
76-
let cancelled: boolean = false;
76+
let cancelled = false;
7777
process.on("SIGINT", () => {
7878
cancelled = true;
7979
abort.abort();

0 commit comments

Comments
 (0)