Run prettier.

This commit is contained in:
cliffhall
2025-03-29 12:36:03 -04:00
parent eaa8055fd1
commit 054741be03
3 changed files with 6 additions and 14 deletions

View File

@@ -190,12 +190,9 @@ server.on("listening", () => {
});
server.on("error", (err) => {
if (err.message.includes(`EADDRINUSE`)) {
console.error(
`❌ Proxy Server PORT IS IN USE at port ${PORT}`,
);
console.error(`❌ Proxy Server PORT IS IN USE at port ${PORT}`);
} else {
console.error(err.message);
}
process.exit(1);
})
});