Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Nov 5, 2023
1 parent ffe3d17 commit bb752d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/controllers/bookingController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function create(req: Request, res: Response) {
await booking.save()
return res.json(booking)
} catch (err) {
console.error(`[booking.create] ${strings.DB_ERROR} ${req.body}`, err)
console.error(`[booking.create] ${strings.DB_ERROR} ${req.body}`, err)
return res.status(400).send(strings.DB_ERROR + err)
}
}
Expand Down

0 comments on commit bb752d5

Please sign in to comment.