feat: lowercase day

This commit is contained in:
amhsirak
2025-01-20 23:52:04 +05:30
parent 90026b2580
commit 768a5bfe74

View File

@@ -207,7 +207,7 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose, initia
sx={dropDownStyle} sx={dropDownStyle}
> >
{days.map((day) => ( {days.map((day) => (
<MenuItem key={day} value={day}>{day}</MenuItem> <MenuItem key={day} value={day}>{day.toLowerCase()}</MenuItem>
))} ))}
</Dropdown> </Dropdown>
</Box> </Box>