From beb449e201c0e276dc2ecf99168b159a143a226d Mon Sep 17 00:00:00 2001 From: amhsirak Date: Mon, 20 Jan 2025 23:54:41 +0530 Subject: [PATCH] feat: capitalize timezone --- src/components/robot/ScheduleSettings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/robot/ScheduleSettings.tsx b/src/components/robot/ScheduleSettings.tsx index e3ffebb2..6f6dec38 100644 --- a/src/components/robot/ScheduleSettings.tsx +++ b/src/components/robot/ScheduleSettings.tsx @@ -265,7 +265,7 @@ export const ScheduleSettingsModal = ({ isOpen, handleStart, handleClose, initia sx={dropDownStyle} > {validMomentTimezones.map((tz) => ( - {tz.toLowerCase()} + {tz.charAt(0).toUpperCase() + tz.slice(1).toLowerCase()} ))}