From c82a386b5bf4b918e250f15b373500dc5cdb4f30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=B1=EA=B2=BD?= Date: Mon, 7 Sep 2026 13:41:36 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=8F=AC=EC=8A=A4=ED=84=B0=20=EB=A9=94?= =?UTF-8?q?=EB=89=B4=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/PipelineTabs.tsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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 타입/로직은 유지) ]; /**