返回提交历史
Modified
src/controllers/api/inventoryController.ts
+0
-1
XFEstudio/SpaceNinjaServer
chore: remove leftover console.log in inventoryController (#569)
1b95186a
代码差异
1 个文件
+0
-1
@@ -31,7 +31,6 @@ const inventoryController: RequestHandler = async (request, response) => {
31
31
32
32
//TODO: make a function that converts from database representation to client
33
33
const inventoryJSON: IInventoryDatabase = inventory.toJSON();
34
console.log(inventoryJSON.Ships);
35
34
36
35
const inventoryResponse = toInventoryResponse(inventoryJSON);
37
36