Skip to content

Commit 410a6f3

Browse files
committed
Format fixes
1 parent b324378 commit 410a6f3

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@
5757
"typescript-eslint": "^8.7.0",
5858
"vite": "^5.4.8"
5959
}
60-
}
60+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@
4545
"@types/shell-quote": "^1.7.5",
4646
"prettier": "3.3.3"
4747
}
48-
}
48+
}

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
"ws": "^8.18.0",
3333
"zod": "^3.23.8"
3434
}
35-
}
35+
}

server/src/index.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,14 +184,13 @@ const PORT = process.env.PORT || 3000;
184184

185185
try {
186186
const server = app.listen(PORT);
187-
188-
server.on('listening', () => {
187+
188+
server.on("listening", () => {
189189
const addr = server.address();
190-
const port = typeof addr === 'string' ? addr : addr?.port;
190+
const port = typeof addr === "string" ? addr : addr?.port;
191191
console.log(`Proxy server listening on port ${port}`);
192192
});
193-
194193
} catch (error) {
195-
console.error('Failed to start server:', error);
194+
console.error("Failed to start server:", error);
196195
process.exit(1);
197196
}

0 commit comments

Comments
 (0)