feat: capitalize timezone
This commit is contained in:
@@ -265,7 +265,7 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose, initia
|
|||||||
sx={dropDownStyle}
|
sx={dropDownStyle}
|
||||||
>
|
>
|
||||||
{validMomentTimezones.map((tz) => (
|
{validMomentTimezones.map((tz) => (
|
||||||
<MenuItem key={tz} value={tz}>{tz.toLowerCase()}</MenuItem>
|
<MenuItem key={tz} value={tz}>{tz.charAt(0).toUpperCase() + tz.slice(1).toLowerCase()}</MenuItem>
|
||||||
))}
|
))}
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
Reference in New Issue
Block a user