this repo has no description
0
fork

Configure Feed

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

Fix notifications popover not close-able on iPad

+8
+8
src/pages/home.jsx
··· 152 152 if (state === 'open') loadNotifications(); 153 153 }, [state]); 154 154 155 + const menuRef = useRef(); 156 + 155 157 return ( 156 158 <ControlledMenu 159 + ref={menuRef} 157 160 menuClassName="notifications-menu" 158 161 state={state} 159 162 anchorRef={anchorRef} 160 163 onClose={onClose} 161 164 portal={{ 162 165 target: document.body, 166 + }} 167 + containerProps={{ 168 + onClick: () => { 169 + menuRef.current?.closeMenu?.(); 170 + }, 163 171 }} 164 172 overflow="auto" 165 173 viewScroll="close"