CASH-816 fixed defect CASH-1121, didnt even need this if statement for anything so I removed it
This commit is contained in:
Johnny shultz 2025-07-01 13:44:13 -04:00
parent 0528d316cf
commit 87013401f5

View file

@ -520,7 +520,6 @@ export default {
const selectedProvider = this.shopProviders.find( const selectedProvider = this.shopProviders.find(
(provider) => provider.providerNumber == this.selectedProviderNumber (provider) => provider.providerNumber == this.selectedProviderNumber
); );
if (selectedProvider.address.zipCode !== this.internalModel.zipCode) {
this.resetAlerts(); this.resetAlerts();
const zipCodeData = await this.getZipCodeData( const zipCodeData = await this.getZipCodeData(
@ -590,9 +589,6 @@ export default {
this.closeModal(); this.closeModal();
} }
} else {
this.closeModal();
}
}, },
}, },
watch: { watch: {