diff --git a/src/App.tsx b/src/App.tsx index c82b67c..f23bf24 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,7 +4,6 @@ import { AppState, ExcelRow, COLUMNS } from './types'; import { Sidebar } from './components/Sidebar'; import { TopBar } from './components/TopBar'; import { ProductDescriptions } from './components/ProductDescriptions'; -import { DataCompleteness } from './components/DataCompleteness'; import { MatrixView } from './components/MatrixView'; import { UploadReload } from './components/UploadReload'; import { EditPanel } from './components/EditPanel'; @@ -18,7 +17,7 @@ export default function App() { fileDate: null, hasUnsavedChanges: false }); - const [activeModule, setActiveModule] = useState<'descriptions' | 'completeness' | 'matrix' | 'upload'>('descriptions'); + const [activeModule, setActiveModule] = useState<'descriptions' | 'matrix' | 'upload'>('descriptions'); const [editingRowIndex, setEditingRowIndex] = useState(null); const [isLoadingDefault, setIsLoadingDefault] = useState(true); const [defaultLoadError, setDefaultLoadError] = useState(null); @@ -228,9 +227,6 @@ export default function App() { onEdit={(index) => setEditingRowIndex(index)} /> )} - {activeModule === 'completeness' && ( - - )} {activeModule === 'matrix' && ( )} diff --git a/src/components/Sidebar.tsx b/src/components/Sidebar.tsx index db882ca..3127c40 100644 --- a/src/components/Sidebar.tsx +++ b/src/components/Sidebar.tsx @@ -10,7 +10,6 @@ interface SidebarProps { export function Sidebar({ activeModule, setActiveModule }: SidebarProps) { const navItems = [ { id: 'descriptions', label: 'Product Descriptions', icon: FileText }, - { id: 'completeness', label: 'Data Completeness', icon: CheckSquare }, { id: 'matrix', label: 'Matrix', icon: Table }, { id: 'upload', label: 'Upload / Reload', icon: Upload }, ] as const;