@nuskin/ns-product-lib 2.13.0-cx24-5107.18 → 2.13.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuskin/ns-product-lib",
3
- "version": "2.13.0-cx24-5107.18",
3
+ "version": "2.13.0",
4
4
  "description": "This project contains shared Product models and code between the backend and frontend.",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -55,7 +55,7 @@ async function getProduct(id, market, locale, config) {
55
55
  }
56
56
 
57
57
  } catch (e) {
58
- console.log(`Unable to fetch product detail for SKU ${id}` + e);
58
+ console.log(`Unable to fetch product detail for SKU ${id}`);
59
59
  }
60
60
 
61
61
  return {
@@ -184,7 +184,7 @@ function mapProduct(product, market, locale, config) {
184
184
  skuId: product.id,
185
185
  type: kitBundleProducts.type.toUpperCase()
186
186
  },
187
- ...mapChildSKU(kitBundleProducts, product.id)
187
+ ...mapChildSKU(kitBundleProducts)
188
188
  ];
189
189
  }
190
190