diff --git a/src/components/molecules/ScheduleSettings.tsx b/src/components/molecules/ScheduleSettings.tsx index de6f3069..7a5868d6 100644 --- a/src/components/molecules/ScheduleSettings.tsx +++ b/src/components/molecules/ScheduleSettings.tsx @@ -62,6 +62,16 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose }: Sche 'MONTHS' ] + const days = [ + 'MONDAY', + 'TUESDAY', + 'WEDNESDAY', + 'THURSDAY', + 'FRIDAY', + 'SATURDAY', + 'SUNDAY' + ] + return ( handleChange('startFrom', e.target.value)} sx={dropDownStyle} > - Monday - Tuesday - Wednesday - Thursday - Friday - Saturday - Sunday + {days.map((day) => ( + {day} + ))}