Stop propagation of mousedown on modal

This commit is contained in:
Luke Vella 2022-04-15 18:26:55 +01:00
parent 654c300430
commit 53906b1acf
2 changed files with 6 additions and 4 deletions

View file

@ -54,9 +54,6 @@ const TimePicker: React.VoidFunctionComponent<TimePickerProps> = ({
key={i}
className={styleMenuItem}
value={optionValue.toISOString()}
onMouseDown={(e: React.MouseEvent<HTMLLIElement>) =>
e.stopPropagation()
}
>
{format(optionValue, "p")}
</Combobox.Option>,