chore: lint

This commit is contained in:
karishmas6
2024-09-10 06:43:29 +05:30
parent 327bd967a1
commit 0ed8ef5f86

View File

@@ -172,7 +172,7 @@ export const RecordingsTable = ({ handleEditRecording, handleRunRecording, handl
case 'schedule': case 'schedule':
return ( return (
<TableCell key={column.id} align={column.align}> <TableCell key={column.id} align={column.align}>
<ScheduleButton handleSchedule={() => handleScheduleRecording(row.name, row.params || []) } /> <ScheduleButton handleSchedule={() => handleScheduleRecording(row.name, row.params || [])} />
</TableCell> </TableCell>
); );
case 'delete': case 'delete':
@@ -245,6 +245,4 @@ const ScheduleButton = ({ handleSchedule }: ScheduleButtonProps) => {
<Schedule /> <Schedule />
</IconButton> </IconButton>
) )
} }