diff --git a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue index 48642101c..fa5c1eb62 100644 --- a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue +++ b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue @@ -236,6 +236,17 @@ export default { }); }, async setMobileLocation() { + // START - TEMP CODE FROM A CAOUETTE 5/25/23 TO BE REMOVED BY EOD + let tempTest = false; + let internalModelAddressQuestions = this.internalModel.addressQuestions; + let modelValueAddressQuestions = this.modelValue.addressQuestions; + if (tempTest) { + // THIS WILL NEVER BE TRUE + console.warn(internalModelAddressQuestions); + console.warn(modelValueAddressQuestions); + } + // END - TEMP CODE FROM A CAOUETTE 5/25/23 TO BE REMOVED BY EOD + if ( this.internalModel.addressQuestions.zipCode !== this.modelValue.addressQuestions.zipCode @@ -270,6 +281,13 @@ export default { this.closeModal(); } + } else { + // START - TEMP CODE FROM A CAOUETTE 5/25/23 TO BE REMOVED BY EOD + if (tempTest) { + // THIS WILL NEVER BE TRUE + console.warn("the zips match and the exception was run"); + } + // END - TEMP CODE FROM A CAOUETTE 5/25/23 TO BE REMOVED BY EOD } }, },