chore: remove leftover console.log in inventoryController #569

Merged
Sainan merged 1 commits from remove-log into main 2024-10-19 04:45:06 -07:00

View File

@ -31,7 +31,6 @@ const inventoryController: RequestHandler = async (request, response) => {
//TODO: make a function that converts from database representation to client //TODO: make a function that converts from database representation to client
const inventoryJSON: IInventoryDatabase = inventory.toJSON(); const inventoryJSON: IInventoryDatabase = inventory.toJSON();
console.log(inventoryJSON.Ships);
const inventoryResponse = toInventoryResponse(inventoryJSON); const inventoryResponse = toInventoryResponse(inventoryJSON);