fixed page crashing when clicked clickOutsideAction

This commit is contained in:
Elyor Djalilov 2024-02-05 12:13:19 +05:00
parent a80a49a57e
commit 2e6d4252e2

View File

@ -163,7 +163,7 @@ const ContextMenuButtonPure = ({
};
const clickOutsideAction = (e: Event) => {
const path = e?.composedPath();
const path = e?.composedPath && e?.composedPath();
const dropDownItem = path
? path.find((x: EventTarget) => x === ref.current)
: null;