hotfix dynamic issue (#3864)

pull/3888/head
Syed Ali Shahbaz 2022-08-17 03:37:44 +05:30 committed by zomars
parent 7e0dbee2ca
commit 73e38384e2
1 changed files with 1 additions and 1 deletions

View File

@ -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,