diff --git a/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue b/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue index 8e8beb784..371754477 100644 --- a/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue +++ b/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue @@ -80,7 +80,7 @@ export default { }, computed: { serviceZipLinkText() { - if (this.modelValue.zipCode.length > 0) { + if (this.modelValue.zipCode && this.modelValue.zipCode.length > 0) { return this.modelValue.state + ", " + this.modelValue.zipCode; } return this.getCmsContent(this.linkWidgetName, "BodyText");