From bef708fe4d174a036d5306a7d595c7587089330a Mon Sep 17 00:00:00 2001 From: Arcadio Quintero Date: Fri, 15 Nov 2024 01:39:01 -0500 Subject: [PATCH] feat(edit-content) cleanup --- .../edit-content/store/edit-content.store.ts | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/core-web/libs/edit-content/src/lib/feature/edit-content/store/edit-content.store.ts b/core-web/libs/edit-content/src/lib/feature/edit-content/store/edit-content.store.ts index fd7fa7a6a36..4a3361d6de8 100644 --- a/core-web/libs/edit-content/src/lib/feature/edit-content/store/edit-content.store.ts +++ b/core-web/libs/edit-content/src/lib/feature/edit-content/store/edit-content.store.ts @@ -11,26 +11,6 @@ import { withSidebar } from './features/sidebar.feature'; import { withWorkflow } from './features/workflow.feature'; export interface EditContentState { - // /** ContentType full data */ - // contentType: DotCMSContentType | null; - // /** Contentlet full data */ - // contentlet: DotCMSContentlet | null; - // /** Schemas available for the content type */ - // schemes: { - // [key: string]: { - // scheme: DotCMSWorkflow; - // actions: DotCMSWorkflowAction[]; - // firstStep: WorkflowStep; - // }; - // }; - // /** Current workflow scheme id */ - // currentSchemeId: string | null; - // /** Actions available for the current content */ - // currentContentActions: DotCMSWorkflowAction[]; - // /** Current workflow step */ - // currentStep: WorkflowStep | null; - // /** Current workflow task */ - // lastTask: WorkflowTask | null; state: ComponentStatus; error: string | null; }