Remove dummy logic for premium timeslot

This commit is contained in:
Chloe Herd 2026-06-09 09:51:31 -04:00
parent 2b0e07948e
commit 0970028fa3

View file

@ -144,7 +144,7 @@ export default {
return `${this.appointmentCount} appt${this.appointmentCount === 1 ? "" : "s"}`; return `${this.appointmentCount} appt${this.appointmentCount === 1 ? "" : "s"}`;
}, },
hasPremiumTimeSlot() { hasPremiumTimeSlot() {
return this.timeSlots?.length > 0; //this.timeSlots?.[0]?.offerPremium === true && this.premiumTimeSlotPrice != null; return this.timeSlots?.[0]?.offerPremium === true && this.premiumTimeSlotPrice != null;
}, },
displayTimeSlots() { displayTimeSlots() {
if (!this.timeSlots?.length) { if (!this.timeSlots?.length) {