Remove dummy logic for premium timeslot
This commit is contained in:
parent
2b0e07948e
commit
0970028fa3
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue