We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ef5df commit fc54d6fCopy full SHA for fc54d6f
1 file changed
src/bridges/user/web/server.ts
@@ -65,7 +65,9 @@ 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(() => {
69
+ resolve(actualPort);
70
+ });
71
});
72
}
73
0 commit comments