Formatting and removing console logs

This commit is contained in:
Scott Kiener 2025-10-02 12:00:24 -04:00
parent 80fea612ab
commit 37fe52f914

View file

@ -517,7 +517,6 @@ export default {
},
];
const resultMap = await settleAllPromises(promiseResultMap);
console.log("resultMap", resultMap);
const itemsToPrice = [];
if (resultMap.mobileFeePart) {
itemsToPrice.push(resultMap.mobileFeePart);
@ -525,8 +524,7 @@ export default {
if (resultMap.premiumFee) {
itemsToPrice.push(resultMap.premiumFee);
}
console.log("itemsToPrice", itemsToPrice);
// Price all items
let pricedMobileFeePart = null;
let pricedPremiumFee = null;