fix: use MouseEvent instead of any
This commit is contained in:
parent
ebfcd60594
commit
482603c378
@ -107,8 +107,11 @@ const PopoverContent = React.forwardRef<HTMLDivElement, PopoverContentProps>(
|
|||||||
const internalRef = useRef<HTMLDivElement | null>(null);
|
const internalRef = useRef<HTMLDivElement | null>(null);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
function handleOutsideClick(e: any) {
|
function handleOutsideClick(e: MouseEvent) {
|
||||||
if (internalRef.current && !internalRef.current.contains(e.target)) {
|
if (
|
||||||
|
internalRef.current &&
|
||||||
|
!internalRef.current.contains(e.target as Node | null)
|
||||||
|
) {
|
||||||
setState((prev) => ({ ...prev, opened: false }));
|
setState((prev) => ({ ...prev, opened: false }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user