diff --git a/src/components/molecules/ScheduleSettings.tsx b/src/components/molecules/ScheduleSettings.tsx index e1791f5a..de6f3069 100644 --- a/src/components/molecules/ScheduleSettings.tsx +++ b/src/components/molecules/ScheduleSettings.tsx @@ -55,6 +55,13 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose }: Sche 'Asia/Kolkata' ]; + const units = [ + 'HOURS', + 'DAYS', + 'WEEKS', + 'MONTHS' + ] + return ( handleChange('runEveryUnit', e.target.value)} sx={dropDownStyle} > - hours - days - weeks - months + {units.map((un) => ( + {un} + ))}