fix format

This commit is contained in:
Tara Zou 2024-05-10 15:11:25 -04:00
parent 586ae376a3
commit 5ee2af75dd
1 changed files with 2 additions and 1 deletions

View File

@ -225,7 +225,8 @@ export const getPriceMapAndCurrencyCode = async (map: OfferingIdMap): Promise<Pr
const offeringId = item.id;
const skuName = map.get(region).get(offeringId);
const unitEffectivePriceInBillingCurrency = item.prices.find((x) => x.type === "Consumption")?.unitEffectivePriceInBillingCurrency;
const unitEffectivePriceInBillingCurrency = item.prices.find((x) => x.type === "Consumption")
?.unitEffectivePriceInBillingCurrency;
regionPriceMap.set(skuName, unitEffectivePriceInBillingCurrency);
}
priceMap.set(region, regionPriceMap);