diff --git a/src/controllers/custom/getItemListsController.ts b/src/controllers/custom/getItemListsController.ts index b6cb1954..4b4cceb3 100644 --- a/src/controllers/custom/getItemListsController.ts +++ b/src/controllers/custom/getItemListsController.ts @@ -19,7 +19,9 @@ const getItemListsController: RequestHandler = (_req, res) => { res.json({ warframes: reduceItems(warframes), weapons: reduceItems(weapons.filter(item => item.productCategory != "OperatorAmps")), - miscitems: reduceItems(items.filter(item => item.category == "Misc" || item.category == "Resources" || item.category == "Fish")), + miscitems: reduceItems( + items.filter(item => item.category == "Misc" || item.category == "Resources" || item.category == "Fish") + ) }); };