Skip to content

Commit

Permalink
fix: wrong args usage
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-jan authored and urmauur committed Jan 17, 2024
1 parent 623dd62 commit 0478aa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ export const startServer = async (
// Start listening for requests
await server
.listen({
port: hostSetting,
host: portSetting,
port: portSetting,
host: hostSetting,
})
.then(() => {
// Log server listening
Expand Down

0 comments on commit 0478aa0

Please sign in to comment.