diff --git a/src/components/PipelineTabs.tsx b/src/components/PipelineTabs.tsx index 0d689f1..e31a650 100644 --- a/src/components/PipelineTabs.tsx +++ b/src/components/PipelineTabs.tsx @@ -1,11 +1,6 @@ import React from 'react'; import { useTranslation } from 'react-i18next'; -import { - BookIcon, - PaletteIcon, - PosterVideoIcon, - StorefrontIcon, -} from './pipelineIcons'; +import { BookIcon, StorefrontIcon } from './pipelineIcons'; /** * 생성할 콘텐츠 종류. 진입 화면에서 고르면 이후 플로우 전체가 갈린다. @@ -28,8 +23,7 @@ interface PipelineTabsProps { const TABS: { id: Pipeline; labelKey: string; Icon: React.FC<{ size?: number }> }[] = [ { id: 'ado2', labelKey: 'pipelineTabs.ado2', Icon: StorefrontIcon }, { id: 'ssul', labelKey: 'pipelineTabs.ssul', Icon: BookIcon }, - { id: 'poster', labelKey: 'pipelineTabs.poster', Icon: PosterVideoIcon }, - { id: 'styling', labelKey: 'pipelineTabs.styling', Icon: PaletteIcon }, + // 'poster', 'styling' 탭은 메뉴에서 숨김 (Pipeline 타입/로직은 유지) ]; /**