hotfix(medusa): remove console.log

This commit is contained in:
olivermrbl
2020-12-16 12:12:22 +01:00
parent 451451a38e
commit bb97a17fe3
2 changed files with 6 additions and 3 deletions
@@ -315,7 +315,7 @@ class ContentfulService extends BaseService {
return this.createProductVariantInContentful(variant)
}
const cleanPrices = variants.prices.map((price) => ({
const cleanPrices = variant.prices.map((price) => ({
...price,
sale_amount: price.sale_amount || undefined,
}))