@nuskin/ns-shop 7.7.0-pa-87.4 → 7.7.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-shop",
3
- "version": "7.7.0-pa-87.4",
3
+ "version": "7.7.0",
4
4
  "description": "The description that will amaze and astound your audience when they read it",
5
5
  "main": "src/shop.js",
6
6
  "scripts": {
@@ -186,11 +186,9 @@ let PickupUtil = function() {
186
186
  const storedShipData = getShipToData(storedPayload.order);
187
187
  same = payload.country === storedPayload.country &&
188
188
  payload.dangerousGoods === storedPayload.dangerousGoods &&
189
- payload.orderValue === storedPayload.orderValue &&
190
189
  shipData.country === storedShipData.country &&
191
190
  shipData.postalCode === storedShipData.postalCode &&
192
191
  shipData.line1 === storedShipData.line1 &&
193
- shipData.line2 === storedShipData.line2 &&
194
192
  shipData.city === storedShipData.city
195
193
  }
196
194
  return same