fix: use MouseEvent instead of any

This commit is contained in:
p-sw 2024-06-14 23:05:36 +09:00
parent ebfcd60594
commit 482603c378

View File

@ -107,8 +107,11 @@ const PopoverContent = React.forwardRef<HTMLDivElement, PopoverContentProps>(
const internalRef = useRef<HTMLDivElement | null>(null);
useEffect(() => {
function handleOutsideClick(e: any) {
if (internalRef.current && !internalRef.current.contains(e.target)) {
function handleOutsideClick(e: MouseEvent) {
if (
internalRef.current &&
!internalRef.current.contains(e.target as Node | null)
) {
setState((prev) => ({ ...prev, opened: false }));
}
}