diff --git a/src/components/LHNOptionsList/OptionRowLHN.js b/src/components/LHNOptionsList/OptionRowLHN.js index 1217caa7d3dd..486e0b4f7860 100644 --- a/src/components/LHNOptionsList/OptionRowLHN.js +++ b/src/components/LHNOptionsList/OptionRowLHN.js @@ -115,9 +115,6 @@ function OptionRowLHN(props) { useCallback(() => { isFocusedRef.current = true; return () => { - if (!isSmallScreenWidth) { - return; - } isFocusedRef.current = false; }; }, []), @@ -128,7 +125,7 @@ function OptionRowLHN(props) { * @param {Object} [event] - A press event. */ const showPopover = (event) => { - if (!isFocusedRef.current) { + if (!isFocusedRef.current && isSmallScreenWidth) { return; } setIsContextMenuActive(true);