Skip to content

Commit

Permalink
lint: fixed linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyton505 committed Nov 11, 2024
1 parent ad79fc7 commit 8d4fd77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/src/routes/workshop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ router.get(
"/workshops/:id",
async (req: express.Request, res: express.Response) => {
await getWorkshop(req, res);
}
},
);

router.post("/testId/:id", async (req: any, res: any) => {
Expand Down
2 changes: 1 addition & 1 deletion api/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ app.use(notFoundHandler);
app.use(errorHandler);

app.listen(process.env.PORT || 8000, () =>
console.log(`Server running on port ${process.env.PORT || 8000}`)
console.log(`Server running on port ${process.env.PORT || 8000}`),
);

0 comments on commit 8d4fd77

Please sign in to comment.