(
return () => {
document.removeEventListener("mousedown", handleOutsideClick);
};
- }, [internalRef, setState]);
+ }, [setState]);
return (
(
})}
ref={(el) => {
internalRef.current = el;
- typeof ref === "function" ? ref(el) : ref && (ref.current = el);
+ if (typeof ref === "function") {
+ ref(el);
+ } else if (ref) {
+ ref.current = el;
+ }
}}
>
{children}