Prettified

This commit is contained in:
Leah Schumann 2023-02-06 13:48:05 -05:00
parent f3f17490ee
commit 040f3490e4
3 changed files with 5 additions and 5 deletions

View file

@ -60,9 +60,9 @@ export default {
async validateAndEmit() {
const validationResult = await this.modalForm.validate();
if (validationResult.valid) {
this.$emit('footer-button-event');
}
this.$emit("footer-button-event");
}
this.resetButtonStyle();
},
resetButtonStyle() {

View file

@ -123,7 +123,7 @@ export default {
this.$refs.mobileLocationModal.closeModal();
},
async setMobileLocation() {
this.closeModal();
this.closeModal();
},
},
components: {

View file

@ -132,7 +132,7 @@ export default {
this.resetAlerts();
const zipCodeData = await this.getZipCodeData(this.serviceZipCodeInput);
if (!zipCodeData.isValid) {
this.displayInvalidZipAlert = true;
} else if (!zipCodeData.isServiceable) {