File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,6 @@ export const A11y: React.FC<Props> = ({
72
72
// temporary fix to prevent error -> keep track of our component's mounted state
73
73
const componentIsMounted = useRef ( true ) ;
74
74
useEffect ( ( ) => {
75
- console . log ( 'use effect ' + description ) ;
76
75
return ( ) => {
77
76
domElement . style . cursor = 'default' ;
78
77
componentIsMounted . current = false ;
Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ export const A11yAnnouncer: React.FC = () => {
18
18
19
19
useEffect ( ( ) => {
20
20
const mouseClickListener = ( e : MouseEvent ) => {
21
- console . log ( 'click' ) ;
22
- console . log ( 'add event listeners' ) ;
23
21
if (
24
22
window . document . activeElement ?. getAttribute ( 'r3f-a11y' ) &&
25
23
e . detail !== 0
You can’t perform that action at this time.
0 commit comments