refactor: better variable name
This commit is contained in:
@@ -103,8 +103,8 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose }: Sche
|
|||||||
handleSelect={(e) => handleChange('runEveryUnit', e.target.value)}
|
handleSelect={(e) => handleChange('runEveryUnit', e.target.value)}
|
||||||
sx={dropDownStyle}
|
sx={dropDownStyle}
|
||||||
>
|
>
|
||||||
{units.map((un) => (
|
{units.map((unit) => (
|
||||||
<MenuItem key={un} value={un}>{un}</MenuItem>
|
<MenuItem key={unit} value={unit}>{unit}</MenuItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
Reference in New Issue
Block a user