diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index 191ee5cb..d4c932d1 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -16,7 +16,7 @@ import { useGlobalInfoStore } from "../../context/globalInfo"; import { deleteRecordingFromStorage, getStoredRecordings } from "../../api/storage"; interface Column { - id: 'interpret' | 'name' | 'create_date' | 'edit' | 'pairs' | 'update_date' | 'delete' | 'schedule' | 'integrate'; + id: 'interpret' | 'name' | 'create_date' | 'edit' | 'update_date' | 'delete' | 'schedule' | 'integrate'; label: string; minWidth?: number; align?: 'right'; @@ -37,11 +37,6 @@ const columns: readonly Column[] = [ label: 'Edit', minWidth: 80, }, - { - id: 'pairs', - label: 'Pairs', - minWidth: 80, - }, { id: 'schedule', label: 'Schedule', @@ -69,7 +64,6 @@ interface Data { id: number; name: string; create_date: string; - pairs: number; update_date: string; content: WorkflowFile; params: string[]; @@ -273,4 +267,4 @@ const IntegrateButton = ({ handleIntegrate }: IntegrateButtonProps) => { ) -} \ No newline at end of file +}