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"}`;
|
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) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue