merging Matt's fix at page level

This commit is contained in:
Leah Schumann 2023-02-13 10:33:45 -05:00
commit bfed75f7b4

View file

@ -103,11 +103,11 @@ export default {
}
},
set: function (newValue) {
this.streetAddress = newValue.streetAddress;
this.apartmentNumberOrBusinessName = newValue.apartmentNumberOrBusinessName;
this.city = newValue.city;
this.state = newValue.state;
this.zipCode = newValue.zipCode;
this.streetAddress = newValue.addressQuestions.streetAddress;
this.apartmentNumberOrBusinessName = newValue.addressQuestions.apartmentNumberOrBusinessName;
this.city = newValue.addressQuestions.city;
this.state = newValue.addressQuestions.state;
this.zipCode = newValue.addressQuestions.zipCode;
this.isVehicleProtected = newValue.isVehicleProtected;
this.isZipServiceableMobile = newValue.isZipServiceableMobile;
this.isZipServiceableInShop = newValue.isZipServiceableInShop;