diff --git a/packages/features/eventtypes/components/tabs/recurring/EventRecurringTab.tsx b/packages/features/eventtypes/components/tabs/recurring/EventRecurringTab.tsx index 1aba6b113a..2a2aec5d87 100644 --- a/packages/features/eventtypes/components/tabs/recurring/EventRecurringTab.tsx +++ b/packages/features/eventtypes/components/tabs/recurring/EventRecurringTab.tsx @@ -1,9 +1,9 @@ -import type { EventTypeSetupProps } from "@calcom/features/eventtypes/lib/types"; +import type { EventRecurringWebWrapperProps } from "@calcom/atoms/event-types/wrappers/EventRecurringWebWrapper"; import getPaymentAppData from "@calcom/lib/getPaymentAppData"; import RecurringEventController from "./RecurringEventController"; -export const EventRecurringTab = ({ eventType }: Pick) => { +export const EventRecurringTab = ({ eventType }: EventRecurringWebWrapperProps) => { const paymentAppData = getPaymentAppData(eventType); const requirePayment = paymentAppData.price > 0; diff --git a/packages/platform/atoms/event-types/wrappers/EventRecurringWebWrapper.tsx b/packages/platform/atoms/event-types/wrappers/EventRecurringWebWrapper.tsx new file mode 100644 index 0000000000..5061a9a4e3 --- /dev/null +++ b/packages/platform/atoms/event-types/wrappers/EventRecurringWebWrapper.tsx @@ -0,0 +1,10 @@ +import { EventRecurringTab } from "@calcom/features/eventtypes/components/tabs/recurring/EventRecurringTab"; +import type { EventTypeSetupProps } from "@calcom/features/eventtypes/lib/types"; + +export type EventRecurringWebWrapperProps = Pick; + +const EventRecurringWebWrapper = (props: EventRecurringWebWrapperProps) => { + return ; +}; + +export default EventRecurringWebWrapper; diff --git a/packages/platform/atoms/event-types/wrappers/EventTypeWebWrapper.tsx b/packages/platform/atoms/event-types/wrappers/EventTypeWebWrapper.tsx index f103dd0b60..bed8751257 100644 --- a/packages/platform/atoms/event-types/wrappers/EventTypeWebWrapper.tsx +++ b/packages/platform/atoms/event-types/wrappers/EventTypeWebWrapper.tsx @@ -68,9 +68,7 @@ const EventInstantTab = dynamic(() => const EventRecurringTab = dynamic(() => // import web wrapper when it's ready - import("@calcom/features/eventtypes/components/tabs/recurring/EventRecurringTab").then( - (mod) => mod.EventRecurringTab - ) + import("./EventRecurringWebWrapper").then((mod) => mod) ); const EventAppsTab = dynamic(() =>