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 { #streetAddressField {
position: relative; position: relative;
.pac-container { :deep(.pac-container) {
top: 76px !important; // Height of #streetAddressField top: 76px !important; // Height of #streetAddressField
left: 0 !important; left: 0 !important;
} }

View file

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

View file

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