From 0970028fa3339dc83b21617a3ed3865e0e1ce1a5 Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Tue, 9 Jun 2026 09:51:31 -0400 Subject: [PATCH] Remove dummy logic for premium timeslot --- .../mobile-scheduling-card/mobile-scheduling-card.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/scheduling/mobile-scheduling-card/mobile-scheduling-card.vue b/src/layouts/scheduling/mobile-scheduling-card/mobile-scheduling-card.vue index 578faaa39..780e18957 100644 --- a/src/layouts/scheduling/mobile-scheduling-card/mobile-scheduling-card.vue +++ b/src/layouts/scheduling/mobile-scheduling-card/mobile-scheduling-card.vue @@ -144,7 +144,7 @@ export default { return `${this.appointmentCount} appt${this.appointmentCount === 1 ? "" : "s"}`; }, hasPremiumTimeSlot() { - return this.timeSlots?.length > 0; //this.timeSlots?.[0]?.offerPremium === true && this.premiumTimeSlotPrice != null; + return this.timeSlots?.[0]?.offerPremium === true && this.premiumTimeSlotPrice != null; }, displayTimeSlots() { if (!this.timeSlots?.length) {