Mirror: React hooks for accessible, common web interactions. UI super powers without the UI.
0
fork

Configure Feed

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

fix illegal character for our rollup build (#6)

authored by

Jovi De Croock and committed by
GitHub
397a5738 e77db4a7

+4 -3
+4 -3
src/useMenuFocus.ts
··· 96 96 event.preventDefault(); 97 97 focus(focusTargets[focusTargets.length - 1]); 98 98 } else if ( 99 - ownerRef?.current && 100 - isInputElement(ownerRef?.current) && 101 - contains(ownerRef?.current, active) && 99 + ownerRef && 100 + ownerRef.current && 101 + isInputElement(ownerRef.current) && 102 + contains(ownerRef.current, active) && 102 103 event.code === 'Enter' 103 104 ) { 104 105 // Move focus to first target when enter is pressed