Skip to content

Commit 8d4dd02

Browse files
authored
fix: disable request reschedule for seated event (calcom#24793)
1 parent 90f97c3 commit 8d4dd02

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

apps/web/components/booking/bookingActions.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,9 @@ export function getEditEventActions(context: BookingActionContext): ActionType[]
128128
iconClassName: "rotate-45 w-[16px] -translate-x-0.5 ",
129129
label: t("send_reschedule_request"),
130130
disabled:
131-
(isBookingInPast && !booking.eventType.allowReschedulingPastBookings) || isDisabledRescheduling,
131+
(isBookingInPast && !booking.eventType.allowReschedulingPastBookings) ||
132+
isDisabledRescheduling ||
133+
booking.seatsReferences.length > 0,
132134
},
133135
isBookingFromRoutingForm
134136
? {

0 commit comments

Comments
 (0)