From 29cd03fc21e3b086f0e1144b8fa84f7c5d902906 Mon Sep 17 00:00:00 2001 From: math-pixel <59537610+math-pixel@users.noreply.github.com> Date: Wed, 29 Apr 2026 11:07:40 +0200 Subject: [PATCH] Update src/hooks/useCharacterAnimation.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/hooks/useCharacterAnimation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useCharacterAnimation.ts b/src/hooks/useCharacterAnimation.ts index bd1bd66..4a3fdb4 100644 --- a/src/hooks/useCharacterAnimation.ts +++ b/src/hooks/useCharacterAnimation.ts @@ -33,7 +33,7 @@ export function useCharacterAnimation( fadeDuration = DEFAULT_FADE_DURATION, } = config; - const groupRef = useRef(null); + const groupRef = useRef(null); const { scene, animations } = useGLTF(modelPath); const { actions, names, mixer } = useAnimations(animations, groupRef); const [currentAnimation, setCurrentAnimation] = useState(initialAnimation);