diff --git a/src/components/organisms/Recordings.tsx b/src/components/organisms/Recordings.tsx index 495a25f8..6ca52607 100644 --- a/src/components/organisms/Recordings.tsx +++ b/src/components/organisms/Recordings.tsx @@ -15,7 +15,7 @@ interface RecordingsProps { setRecordingInfo: (id: string, name: string) => void; } -export const Recordings = ({ handleEditRecording, handleRunRecording, setRecordingInfo, handleScheduleRecording}: RecordingsProps) => { +export const Recordings = ({ handleEditRecording, handleRunRecording, setRecordingInfo, handleScheduleRecording }: RecordingsProps) => { const [runSettingsAreOpen, setRunSettingsAreOpen] = useState(false); const [scheduleSettingsAreOpen, setScheduleSettingsAreOpen] = useState(false); const [integrateSettingsAreOpen, setIntegrateSettingsAreOpen] = useState(false); @@ -24,10 +24,10 @@ export const Recordings = ({ handleEditRecording, handleRunRecording, setRecordi const [robotDuplicateAreOpen, setRobotDuplicateAreOpen] = useState(false); const [params, setParams] = useState([]); const [selectedRecordingId, setSelectedRecordingId] = useState(''); - const handleIntegrateRecording = (id: string, settings: IntegrationSettings) => {}; - const handleSettingsRecording = (id: string, settings: RobotSettings) => {}; - const handleEditRobot = (id: string, settings: RobotSettings) => {}; - const handleDuplicateRobot = (id: string, settings: RobotSettings) => {}; + const handleIntegrateRecording = (id: string, settings: IntegrationSettings) => { }; + const handleSettingsRecording = (id: string, settings: RobotSettings) => { }; + const handleEditRobot = (id: string, settings: RobotSettings) => { }; + const handleDuplicateRobot = (id: string, settings: RobotSettings) => { }; const handleSettingsAndIntegrate = (id: string, name: string, params: string[]) => { if (params.length === 0) { @@ -169,9 +169,9 @@ export const Recordings = ({ handleEditRecording, handleRunRecording, setRecordi handleClose={handleRobotSettingsClose} handleStart={(settings) => handleSettingsRecording(selectedRecordingId, settings)} /> - handleEditRobot(selectedRecordingId,settings)} + handleStart={(settings) => handleEditRobot(selectedRecordingId, settings)} />