From 06552dd86032ba555f0ae933765e8fb8126f8a55 Mon Sep 17 00:00:00 2001 From: Alex Williams Date: Fri, 7 Jun 2024 18:24:57 +0100 Subject: [PATCH] Removing debugging console.log entries that are no longer needed for EDOMH fix --- src/app/components/ModalShoppingList.jsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/components/ModalShoppingList.jsx b/src/app/components/ModalShoppingList.jsx index aa37f2d5..b1f21e15 100644 --- a/src/app/components/ModalShoppingList.jsx +++ b/src/app/components/ModalShoppingList.jsx @@ -248,8 +248,6 @@ export default class ModalShoppingList extends TranslatedComponent { } let JSONString = JSON.stringify(baseJson) - console.log(JSONString) - console.log(ship) let deflated = zlib.deflateSync(JSONString) //actually encode @@ -285,13 +283,11 @@ export default class ModalShoppingList extends TranslatedComponent { if (!module.m.blueprint.grades[g].components.hasOwnProperty(i)) { continue; } - console.log("Grade: " + g + " Component: " + i + " Amount: " + module.m.blueprint.grades[g].components[i] + " Rolls: " + this.state.matsPerGrade[g]) if (mats[i]) { mats[i] += module.m.blueprint.grades[g].components[i] * this.state.matsPerGrade[g]; } else { mats[i] = module.m.blueprint.grades[g].components[i] * this.state.matsPerGrade[g]; } - console.log(mats[i]) } } if (module.m.blueprint.special) {