feat: empty labels

This commit is contained in:
karishmas6
2024-09-12 23:15:03 +05:30
parent df9208299f
commit 235fde2e61

View File

@@ -69,7 +69,7 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose }: Sche
sx={textStyle} sx={textStyle}
/> />
<Dropdown <Dropdown
label="unit" label=""
id="runEveryUnit" id="runEveryUnit"
value={settings.runEveryUnit} value={settings.runEveryUnit}
handleSelect={(e) => handleChange('runEveryUnit', e.target.value)} handleSelect={(e) => handleChange('runEveryUnit', e.target.value)}
@@ -86,7 +86,7 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose }: Sche
<Box sx={{ width: '100%' }}> <Box sx={{ width: '100%' }}>
<Typography sx={{ marginBottom: '5px' }}>Start from</Typography> <Typography sx={{ marginBottom: '5px' }}>Start from</Typography>
<Dropdown <Dropdown
label="start from" label=""
id="startFrom" id="startFrom"
value={settings.startFrom} value={settings.startFrom}
handleSelect={(e) => handleChange('startFrom', e.target.value)} handleSelect={(e) => handleChange('startFrom', e.target.value)}
@@ -115,7 +115,7 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose }: Sche
<Box> <Box>
<Typography sx={{ marginBottom: '5px' }}>Timezone</Typography> <Typography sx={{ marginBottom: '5px' }}>Timezone</Typography>
<Dropdown <Dropdown
label="timezone" label=""
id="timezone" id="timezone"
value={settings.timezone} value={settings.timezone}
handleSelect={(e) => handleChange('timezone', e.target.value)} handleSelect={(e) => handleChange('timezone', e.target.value)}