diff --git a/packages/features/bookings/Booker/Booker.tsx b/packages/features/bookings/Booker/Booker.tsx index 2950239c7e..051d03169d 100644 --- a/packages/features/bookings/Booker/Booker.tsx +++ b/packages/features/bookings/Booker/Booker.tsx @@ -158,6 +158,11 @@ const BookerComponent = ({ }; const shouldShowFormInDialog = shouldShowFormInDialogMap[layout]; + + if (bookerState === "loading") { + return null; + } + return ( <> {event.data ? : null} @@ -209,7 +214,7 @@ const BookerComponent = ({ {layout !== BookerLayouts.MONTH_VIEW && !(layout === "mobile" && bookerState === "booking") && ( -
+
)}