We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c318dca commit b8ef5dfCopy full SHA for b8ef5df
1 file changed
src/bridges/user/web/server.ts
@@ -65,7 +65,7 @@ function findFreePort(
65
probe.listen(port, WEB_HOST, () => {
66
const addr = probe.address();
67
const actualPort = typeof addr === "object" && addr ? addr.port : port;
68
- probe.close(() => resolve(actualPort));
+ probe.close(() => { resolve(actualPort); });
69
});
70
}
71
0 commit comments