Merge pull request #974 from Safelite/CSR-1178-fix-zip-code-error

CSR-1178 fix incorrect zip code alert being displayed.
This commit is contained in:
bmauger 2023-02-14 14:04:42 -05:00 committed by GitHub
commit cf02a17bc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -364,7 +364,11 @@ export default {
}
// If the Service Zip is NOT serviceable then show an alert
this.displayNonServiceableZipAlert = true;
if (zipCodeData.isValid) {
this.displayNonServiceableZipAlert = true;
} else {
this.displayInvalidZipAlert = true;
}
return this.$refs.funnelFooter.removeLoader();
},