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() { async validateAndEmit() {
const validationResult = await this.modalForm.validate(); const validationResult = await this.modalForm.validate();
if (validationResult.valid) { if (validationResult.valid) {
this.$emit('footer-button-event'); this.$emit("footer-button-event");
} }
this.resetButtonStyle(); this.resetButtonStyle();
}, },
resetButtonStyle() { resetButtonStyle() {

View file

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

View file

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