diff --git a/src/components/three/SimpleModel.tsx b/src/components/three/SimpleModel.tsx index cfa6e83..6c7b9c2 100644 --- a/src/components/three/SimpleModel.tsx +++ b/src/components/three/SimpleModel.tsx @@ -1,5 +1,5 @@ import { useGLTF } from "@react-three/drei"; -import type { Vector3Tuple } from "@/types/3d"; +import type { Vector3Tuple } from "@/types/three"; export interface SimpleModelConfig { modelPath: string; diff --git a/src/components/three/index.ts b/src/components/three/index.ts index d8516b8..9ff35d8 100644 --- a/src/components/three/index.ts +++ b/src/components/three/index.ts @@ -1,4 +1,4 @@ -export { AnimatedModel, useAnimatedModel } from "./AnimatedModel"; +export { AnimatedModel } from "./AnimatedModel"; export type { AnimatedModelConfig } from "./AnimatedModel"; export { SimpleModel } from "./SimpleModel";