CSR-1178 fix incorrect zip code alert being displayed.

This commit is contained in:
Bryan Mauger 2023-02-14 13:55:06 -05:00
parent 563f2eef99
commit 85f19a8bcd

View file

@ -364,7 +364,12 @@ 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();
},