Merge branch 'develop' into feature/SSR-705

This commit is contained in:
Jeremy Zimmerman 2023-09-21 10:22:15 -04:00
commit 8462ed5f34
3 changed files with 4 additions and 4 deletions

View file

@ -356,7 +356,7 @@ export default {
#streetAddressField {
position: relative;
.pac-container {
:deep(.pac-container) {
top: 76px !important; // Height of #streetAddressField
left: 0 !important;
}

View file

@ -159,7 +159,7 @@ export default {
}
}
},
mounted() {
beforeMount() {
if (this.policyVehicles?.length === 1) {
this.selectedVehicleVin = this.policyVehicles[0].vin;
}

View file

@ -881,8 +881,8 @@ export const useMainStore = defineStore({
zipCode: customer.address?.zipCode
},
emailAddress: contactInfo.emailAddress,
firstName: contactInfo.firstName,
lastName: contactInfo.lastName,
firstName: contactInfo.firstName || customer.firstName,
lastName: contactInfo.lastName || customer.lastName,
phoneNumber: contactInfo.phoneNumber,
optInSms: contactInfo.requestTextUpdates ?? false
},