feat: lowercase unit
This commit is contained in:
@@ -190,7 +190,7 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose, initia
|
|||||||
sx={dropDownStyle}
|
sx={dropDownStyle}
|
||||||
>
|
>
|
||||||
{units.map((unit) => (
|
{units.map((unit) => (
|
||||||
<MenuItem key={unit} value={unit}>{unit}</MenuItem>
|
<MenuItem key={unit} value={unit}>{unit.toLocaleLowerCase()}</MenuItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
Reference in New Issue
Block a user