fix: 포스터 메뉴 제거

This commit is contained in:
김성경 2026-09-07 13:41:36 +09:00
parent 487d0f6d6a
commit c82a386b5b

View File

@ -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 타입/로직은 유지)
];
/**