From 966418659d427b24e1393683de278eae98778b7c Mon Sep 17 00:00:00 2001 From: admtracksteel Date: Sat, 30 May 2026 10:57:29 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Auto-deploy:=20melhoria=20no=20s?= =?UTF-8?q?nap=20e=20medi=C3=A7=C3=A3o=20AR=20em=2030/05/2026=2010:57:29?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/three/ModelViewer.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/three/ModelViewer.tsx b/src/components/three/ModelViewer.tsx index 985cbc7..2e1d411 100644 --- a/src/components/three/ModelViewer.tsx +++ b/src/components/three/ModelViewer.tsx @@ -1335,7 +1335,8 @@ function WalkControls() { const setWalkMode = useModelStore(s => s.setWalkMode); const gridY = useModelStore(s => s.gridY); const { camera } = useThree(); - const controlsRef = useRef<{ lock: () => void } | null>(null); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const controlsRef = useRef(null); const keys = useRef({ w: false, a: false, s: false, d: false, shift: false }); const initialized = useRef(false);