diff --git a/src/components/molecules/ScheduleSettings.tsx b/src/components/molecules/ScheduleSettings.tsx index d8bc8bb9..33df99d9 100644 --- a/src/components/molecules/ScheduleSettings.tsx +++ b/src/components/molecules/ScheduleSettings.tsx @@ -85,6 +85,10 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose, initia handleStart(settings); }; + const deleteSchedule = () => { + + }; + return ( *': { marginBottom: '20px' }, }}> Schedule Settings - - handleChange('enabled', e.target.checked)} - color="primary" - /> - } - label="Enable Scheduling" - /> - - {settings.enabled && ( <> Run once every @@ -195,24 +186,26 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose, initia - )} - {/* {settings.enabled && ( - - {initialSettings?.nextRunAt && ( - `Next scheduled run: ${new Date(initialSettings.nextRunAt).toLocaleString()}` - )} - - )} */} + + + - + + + + ); -}; \ No newline at end of file +};