diff --git a/API-Project/src/controllers/ingredients.controller.ts b/API-Project/src/controllers/ingredients.controller.ts index 8945ea5..822ca95 100644 --- a/API-Project/src/controllers/ingredients.controller.ts +++ b/API-Project/src/controllers/ingredients.controller.ts @@ -51,7 +51,6 @@ IngredientsController.get('/letter/:letter', async (req, res) => { /** To get one ingredient by id */ IngredientsController.get('/:id', async (req, res) => { - console const id = Number(req.params.id); if (!Number.isInteger(id)) {