Convert null address2s to empty strings for mobile
This commit is contained in:
parent
a289c03dc9
commit
23e4096a3c
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ export default {
|
|||
if (this.serviceLocation?.appointmentType === AppointmentTypeStrings.MOBILE) {
|
||||
return {
|
||||
address: this.serviceLocation?.address,
|
||||
address2: this.serviceLocation?.address2,
|
||||
address2: this.serviceLocation?.address2 ?? "",
|
||||
city: this.serviceLocation?.city,
|
||||
state: this.serviceLocation?.state,
|
||||
zipCode: this.serviceLocation?.zipCode,
|
||||
|
|
|
|||
Loading…
Reference in a new issue