diff --git a/apps/web/pages/api/book/event.ts b/apps/web/pages/api/book/event.ts index 63e5a5428ff7b9..627b579c50981c 100644 --- a/apps/web/pages/api/book/event.ts +++ b/apps/web/pages/api/book/event.ts @@ -291,7 +291,7 @@ async function handler(req: NextApiRequest) { }) : eventType.users; const isDynamicAllowed = !users.some((user) => !user.allowDynamicBooking); - if (!isDynamicAllowed) { + if (!isDynamicAllowed && !eventTypeId) { throw new HttpError({ message: "Some of the users in this group do not allow dynamic booking", statusCode: 400,