Skip to content

Commit fdd3d11

Browse files
authored
Fix dynamic group meeting slots not loading (calcom#25101)
1 parent e7ea188 commit fdd3d11

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/platform/atoms/booker/BookerPlatformWrapper.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ const BookerPlatformWrapperComponent = (
303303
Boolean(month) &&
304304
Boolean(timezone) &&
305305
!event?.isPending &&
306-
Boolean(event?.data?.id),
306+
event?.data?.id != null,
307307
orgSlug: props.entity?.orgSlug ?? undefined,
308308
eventTypeSlug: isDynamic ? "dynamic" : eventSlug || "",
309309
_silentCalendarFailures: silentlyHandleCalendarFailures,

0 commit comments

Comments
 (0)