Merge branch 'develop' into feature/CSR-1112A

This commit is contained in:
Leah Schumann 2023-05-17 10:37:44 -04:00
commit 3f2acd7bf0

View file

@ -389,11 +389,11 @@ export default {
appointmentType: this.selectedAppointmentType, appointmentType: this.selectedAppointmentType,
isVehicleProtected: this.isVehicleProtected, isVehicleProtected: this.isVehicleProtected,
provider: { provider: {
providerNumber: this.selectedProvider.providerNumber, providerNumber: this.selectedProvider?.providerNumber,
address: this.selectedProvider.address.streetAddress, address: this.selectedProvider?.address?.streetAddress,
city: this.selectedProvider.address.city, city: this.selectedProvider?.address?.city,
state: this.selectedProvider.address.state, state: this.selectedProvider?.address?.state,
zip: this.selectedProvider.address.zipCode, zip: this.selectedProvider?.address?.zipCode,
}, },
}, },
false false