Skip to content

Commit ffa8945

Browse files
committed
removed console.log
1 parent 4f31fd6 commit ffa8945

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/A11y.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ export const A11y: React.FC<Props> = ({
7272
// temporary fix to prevent error -> keep track of our component's mounted state
7373
const componentIsMounted = useRef(true);
7474
useEffect(() => {
75-
console.log('use effect ' + description);
7675
return () => {
7776
domElement.style.cursor = 'default';
7877
componentIsMounted.current = false;

src/A11yAnnouncer.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ export const A11yAnnouncer: React.FC = () => {
1818

1919
useEffect(() => {
2020
const mouseClickListener = (e: MouseEvent) => {
21-
console.log('click');
22-
console.log('add event listeners');
2321
if (
2422
window.document.activeElement?.getAttribute('r3f-a11y') &&
2523
e.detail !== 0

0 commit comments

Comments
 (0)