this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix menu blocking everything for Boost button

+3 -1
+3 -1
src/components/menu-confirm.jsx
··· 2 2 import { cloneElement } from 'preact'; 3 3 import { useRef } from 'preact/hooks'; 4 4 5 + import Menu2 from './menu2'; 6 + 5 7 function MenuConfirm({ 6 8 subMenu = false, 7 9 confirm = true, ··· 20 22 } 21 23 return children; 22 24 } 23 - const Parent = subMenu ? SubMenu : Menu; 25 + const Parent = subMenu ? SubMenu : Menu2; 24 26 const menuRef = useRef(); 25 27 return ( 26 28 <Parent