diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index 191ee5cb..08411bdb 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[]; @@ -123,7 +117,6 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl if (rows.length === 0) { fetchRecordings(); } - }, []); return ( @@ -273,4 +266,4 @@ const IntegrateButton = ({ handleIntegrate }: IntegrateButtonProps) => { ) -} \ No newline at end of file +}