From 940a6f25d518350677a4d9bbd8c8d12b63ab66b4 Mon Sep 17 00:00:00 2001 From: Naveen Pandey Date: Fri, 20 Sep 2024 19:53:40 +0530 Subject: [PATCH] feat: remove pairs from recordings table --- src/components/molecules/RecordingsTable.tsx | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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 +}