From 630d3370b311f0cd0ab62544f4c84051c12192ce Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Tue, 8 Jul 2025 15:49:04 -0400 Subject: [PATCH] CASH-816 CASH-816 formatting --- src/digital-components/modal/modal.vue | 4 ++-- .../shop-question/shop-question-popup.vue | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/digital-components/modal/modal.vue b/src/digital-components/modal/modal.vue index 4edfb8bca..16b259547 100644 --- a/src/digital-components/modal/modal.vue +++ b/src/digital-components/modal/modal.vue @@ -40,8 +40,8 @@ :buttonText="footerButtonText" @click-event="validateAndEmit" :class="[ - isFooterButtonDisabled && 'form-test-invalid', - { 'form-test-invalid': footerButtonDisabled === true } + isFooterButtonDisabled && 'form-test-invalid', + { 'form-test-invalid': footerButtonDisabled === true }, ]" /> diff --git a/src/layouts/service-location/shop-question/shop-question-popup.vue b/src/layouts/service-location/shop-question/shop-question-popup.vue index 0bc2376c1..bcf8281b3 100644 --- a/src/layouts/service-location/shop-question/shop-question-popup.vue +++ b/src/layouts/service-location/shop-question/shop-question-popup.vue @@ -596,12 +596,14 @@ export default { this.closeModal(); } }, - getShopsByZip(zipCode, shops, numberToGet = 3) { + getShopsByZip(zipCode, shops, numberToGet = 3) { return shops - .filter((shop) => shop.address && shop.address.zipCode && shop.address.zipCode !== "") + .filter( + (shop) => shop.address && shop.address.zipCode && shop.address.zipCode !== "" + ) .sort((a, b) => a.distanceInMiles - b.distanceInMiles) .slice(0, numberToGet); - } + }, }, watch: { shopProviderData: {