diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index 6cf00494..2c2448cb 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' | 'createdAt' | 'edit' | 'updatedAt' | 'delete' | 'schedule' | 'integrate'; + id: 'interpret' | 'name' | 'createdAt' | 'updatedAt' | 'delete' | 'schedule' | 'integrate'; label: string; minWidth?: number; align?: 'right'; @@ -32,11 +32,6 @@ const columns: readonly Column[] = [ minWidth: 80, //format: (value: string) => value.toLocaleString('en-US'), }, - { - id: 'edit', - label: 'Edit', - minWidth: 80, - }, { id: 'schedule', label: 'Schedule', @@ -158,16 +153,16 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl handleRunRecording(row.id, row.name, row.params || [])} /> ); - case 'edit': - return ( - - { - handleEditRecording(row.id, row.name); - }} sx={{ '&:hover': { color: '#1976d2', backgroundColor: 'transparent' } }}> - - - - ); + // case 'edit': + // return ( + // + // { + // handleEditRecording(row.id, row.name); + // }} sx={{ '&:hover': { color: '#1976d2', backgroundColor: 'transparent' } }}> + // + // + // + // ); case 'schedule': return (