Skip to content

Commit

Permalink
fix: Fixed build and start mistakes (close #1911)
Browse files Browse the repository at this point in the history
  • Loading branch information
icleitoncosta committed Nov 3, 2023
1 parent 617ba10 commit 222c1d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -101,7 +101,7 @@
"boxen": "^5.1.2",
"catch-exit": "^1.2.2",
"chalk": "~4.1.2",
"chrome-launcher": "^1.1.0",
"chrome-launcher": "^0.15.2",
"execa": "^5.1.1",
"file-type": "~16.5.4",
"futoin-hkdf": "^1.5.3",
Expand Down
2 changes: 1 addition & 1 deletion src/api/layers/host.layer.ts
Expand Up @@ -168,7 +168,7 @@ export class HostLayer {
this.checkStartInterval = setInterval(() => this.checkStart(), 5000);

this.page.on('close', () => {
clearInterval(this.checkStartInterval);
clearInterval(this.checkStartInterval as NodeJS.Timeout);
});
}

Expand Down

0 comments on commit 222c1d9

Please sign in to comment.