We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90f97c3 commit 8d4dd02Copy full SHA for 8d4dd02
1 file changed
apps/web/components/booking/bookingActions.ts
@@ -128,7 +128,9 @@ export function getEditEventActions(context: BookingActionContext): ActionType[]
128
iconClassName: "rotate-45 w-[16px] -translate-x-0.5 ",
129
label: t("send_reschedule_request"),
130
disabled:
131
- (isBookingInPast && !booking.eventType.allowReschedulingPastBookings) || isDisabledRescheduling,
+ (isBookingInPast && !booking.eventType.allowReschedulingPastBookings) ||
132
+ isDisabledRescheduling ||
133
+ booking.seatsReferences.length > 0,
134
},
135
isBookingFromRoutingForm
136
? {
0 commit comments