From 0dccfb883c11e1c6a701ed001ff58d40ae797a1a Mon Sep 17 00:00:00 2001 From: Chris Redelinghuys Date: Fri, 31 Oct 2025 15:10:39 -0400 Subject: [PATCH] CASH-1535: Styling updates --- .../schedule/mobile-first-modal/mobile-first-modal.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layouts/schedule/mobile-first-modal/mobile-first-modal.vue b/src/layouts/schedule/mobile-first-modal/mobile-first-modal.vue index 30d954da5..2dbde3bd9 100644 --- a/src/layouts/schedule/mobile-first-modal/mobile-first-modal.vue +++ b/src/layouts/schedule/mobile-first-modal/mobile-first-modal.vue @@ -109,16 +109,16 @@ export default { ); tokens.forEach((token) => { if (token.includes(INLINE_SERVICETYPE_TOKEN)) { - const serviceType = "" + this.getServiceType + ""; + const serviceType = "" + this.getServiceType + ""; tokens.splice(tokens.indexOf(token), 1, serviceType); } else if (token.includes(INLINE_DAY_TOKEN) && this.selectedAppontment.date) { const day = - "" + + "" + new Date(this.selectedAppontment.date).toLocaleDateString("en-US", { weekday: "long", timeZone: "UTC", }) + - ""; + ""; tokens.splice(tokens.indexOf(token), 1, day); } else if (token.includes(INLINE_DATE_TOKEN) && this.selectedAppontment.date) { const date = new Date(this.selectedAppontment.date).toLocaleDateString(