From 7551b725f339021ca92a53c2cd0eccd5402e404c Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Thu, 10 Oct 2024 03:37:12 +0530 Subject: [PATCH] chore: lint --- src/components/molecules/RecordingsTable.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/molecules/RecordingsTable.tsx b/src/components/molecules/RecordingsTable.tsx index 77cf7e8e..3da2a452 100644 --- a/src/components/molecules/RecordingsTable.tsx +++ b/src/components/molecules/RecordingsTable.tsx @@ -72,9 +72,9 @@ interface Data { interface RecordingsTableProps { handleEditRecording: (id: string, fileName: string) => void; - handleRunRecording: (id: string,fileName: string, params: string[]) => void; - handleScheduleRecording: (id: string,fileName: string, params: string[]) => void; - handleIntegrateRecording: (id: string,fileName: string, params: string[]) => void; + handleRunRecording: (id: string, fileName: string, params: string[]) => void; + handleScheduleRecording: (id: string, fileName: string, params: string[]) => void; + handleIntegrateRecording: (id: string, fileName: string, params: string[]) => void; } export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handleScheduleRecording, handleIntegrateRecording }: RecordingsTableProps) => {