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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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