INSR-9816: Null handling improvement

This commit is contained in:
Alex Humphries 2026-05-29 15:01:25 -04:00
parent 3188397a6b
commit a19af79bb7

View file

@ -38,9 +38,9 @@ export default {
}, },
customValueMap() { customValueMap() {
return { return {
homePhone: this.mainStore.contactInfo.homePhone, homePhone: this.mainStore.contactInfo.homePhone ?? '',
extension: this.mainStore.contactInfo.extension ?? '', extension: this.mainStore.contactInfo.extension ?? '',
emailAddress: this.mainStore.contactInfo.emailAddress emailAddress: this.mainStore.contactInfo.emailAddress ?? ''
} }
} }
} }