From 399e2ef8b84a02bd152cae2a2b9ccc9d6b506c9c Mon Sep 17 00:00:00 2001 From: Sainan Date: Fri, 18 Oct 2024 23:44:13 +0200 Subject: [PATCH] chore: remove leftover console.log in inventoryController --- src/controllers/api/inventoryController.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/controllers/api/inventoryController.ts b/src/controllers/api/inventoryController.ts index 315af1cc..9272869a 100644 --- a/src/controllers/api/inventoryController.ts +++ b/src/controllers/api/inventoryController.ts @@ -31,7 +31,6 @@ const inventoryController: RequestHandler = async (request, response) => { //TODO: make a function that converts from database representation to client const inventoryJSON: IInventoryDatabase = inventory.toJSON(); - console.log(inventoryJSON.Ships); const inventoryResponse = toInventoryResponse(inventoryJSON);