diff --git a/packages/features/bookings/lib/handleCancelBooking.ts b/packages/features/bookings/lib/handleCancelBooking.ts index fb8038922cf053..3ed63d0cd5547c 100644 --- a/packages/features/bookings/lib/handleCancelBooking.ts +++ b/packages/features/bookings/lib/handleCancelBooking.ts @@ -106,13 +106,6 @@ async function handler(input: CancelBookingInput) { throw new HttpError({ statusCode: 400, message: "User not found" }); } - if (bookingToDelete.eventType?.disableCancelling) { - throw new HttpError({ - statusCode: 400, - message: "This event type does not allow cancellations", - }); - } - if (!platformClientId && !cancellationReason?.trim() && bookingToDelete.userId == userId) { throw new HttpError({ statusCode: 400,