diff --git a/web/ee/components/active-cycles/index.ts b/web/ee/components/active-cycles/index.ts index 13735b854a..3151dd10dd 100644 --- a/web/ee/components/active-cycles/index.ts +++ b/web/ee/components/active-cycles/index.ts @@ -1,5 +1,6 @@ export * from "./root"; export * from "./workspace-active-cycles-upgrade"; +export * from "./workspace-active-cycles-list"; export * from "./header"; export * from "./progress"; export * from "./project-title"; diff --git a/web/ee/components/active-cycles/root.tsx b/web/ee/components/active-cycles/root.tsx index a7810d113f..b4b0bcdc72 100644 --- a/web/ee/components/active-cycles/root.tsx +++ b/web/ee/components/active-cycles/root.tsx @@ -1 +1,4 @@ -export * from "ce/components/active-cycles/root"; +// plane web components +import { WorkspaceActiveCyclesList } from "@/plane-web/components/active-cycles"; + +export const WorkspaceActiveCyclesRoot = () => ; diff --git a/web/core/components/workspace/workspace-active-cycles-list.tsx b/web/ee/components/active-cycles/workspace-active-cycles-list.tsx similarity index 100% rename from web/core/components/workspace/workspace-active-cycles-list.tsx rename to web/ee/components/active-cycles/workspace-active-cycles-list.tsx