fix: pass schedule settings

This commit is contained in:
karishmas6
2024-09-12 22:18:10 +05:30
parent 8da44ce20f
commit 6b1d22ce43

View File

@@ -7,7 +7,7 @@ import { ScheduleSettings, ScheduleSettingsModal } from "../molecules/ScheduleSe
interface RecordingsProps {
handleEditRecording: (fileName: string) => void;
handleRunRecording: (settings: RunSettings) => void;
handleScheduleRecording: (settings: RunSettings) => void;
handleScheduleRecording: (settings: ScheduleSettings) => void;
setFileName: (fileName: string) => void;
}