Skip to content

Commit

Permalink
feat: fix toString issue in timepicker
Browse files Browse the repository at this point in the history
affects: @medly-components/core, @medly-components/forms
  • Loading branch information
gmukul01 committed Jun 19, 2024
1 parent a3264d5 commit e0cc1bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/components/TimePicker/TimePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const Component: FC<TimePickerProps> = memo(
/>
{!disabled && (
<TimePickerPopup
key={value.toString()}
key={value}
value={value}
onChange={onChange}
onReset={handleReset}
Expand Down

0 comments on commit e0cc1bd

Please sign in to comment.