Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
affects: @medly-components/core
  • Loading branch information
gmukul01 committed Jun 18, 2024
1 parent 6efbb00 commit 6b4ac4c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const Component: FC<TimePickerPopupProps> = ({ value, onChange, onReset,
};

useEffect(() => {
if (!!value) {
if (value) {
const time = value.split(':');
const hour = Number(time[0]);
const minutes = Number(time[1]);
Expand Down

0 comments on commit 6b4ac4c

Please sign in to comment.