@nuskin/ns-shop 7.8.0 → 7.8.1-pa-895.1

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.8.0",
3
+ "version": "7.8.1-pa-895.1",
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": {
@@ -189,7 +189,9 @@ let PickupUtil = function() {
189
189
  shipData.country === storedShipData.country &&
190
190
  shipData.postalCode === storedShipData.postalCode &&
191
191
  shipData.line1 === storedShipData.line1 &&
192
- shipData.city === storedShipData.city
192
+ shipData.line2 === storedShipData.line2 &&
193
+ shipData.city === storedShipData.city &&
194
+ shipData.weight === storedShipData.weight
193
195
  }
194
196
  return same
195
197
  }