File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export const TimezoneSelect: FC<TTimezoneSelect> = observer((props) => {
3737 < div >
3838 < CustomSearchSelect
3939 value = { value }
40- label = { selectedValue ? selectedValue ( value ) : label }
40+ label = { value && selectedValue ? selectedValue ( value ) : label }
4141 options = { isDisabled || disabled ? [ ] : timezones }
4242 onChange = { onChange }
4343 buttonClassName = { cn ( buttonClassName , {
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export const ProfileForm = observer((props: TProfileFormProps) => {
6262 email : user . email || "" ,
6363 role : profile . role || "Product / Project Manager" ,
6464 language : profile . language || "en" ,
65- user_timezone : "Asia/Kolkata" ,
65+ user_timezone : user . user_timezone || "Asia/Kolkata" ,
6666 } ,
6767 } ) ;
6868 // derived values
You can’t perform that action at this time.
0 commit comments