From a4383a7cec7895783500a4d863e9e9a1d0114dad Mon Sep 17 00:00:00 2001 From: Tom Boullay Date: Mon, 25 May 2026 00:52:06 +0200 Subject: [PATCH] update: file order --- src/components/three/models/AnimatedModel.tsx | 2 +- .../three/models => hooks/animation}/useAnimatedModel.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{components/three/models => hooks/animation}/useAnimatedModel.ts (100%) diff --git a/src/components/three/models/AnimatedModel.tsx b/src/components/three/models/AnimatedModel.tsx index 7a67479..03ab893 100644 --- a/src/components/three/models/AnimatedModel.tsx +++ b/src/components/three/models/AnimatedModel.tsx @@ -4,7 +4,7 @@ import type { AnimationAction } from "three"; import { AnimatedModelContext, type AnimatedModelContextValue, -} from "@/components/three/models/useAnimatedModel"; +} from "@/hooks/animation/useAnimatedModel"; import { useLoggedGLTF } from "@/hooks/three/useLoggedGLTF"; import type { ModelTransformProps } from "@/types/three/three"; diff --git a/src/components/three/models/useAnimatedModel.ts b/src/hooks/animation/useAnimatedModel.ts similarity index 100% rename from src/components/three/models/useAnimatedModel.ts rename to src/hooks/animation/useAnimatedModel.ts