From c7128d58ed3f105f78a3aac587917510c04bc3b6 Mon Sep 17 00:00:00 2001 From: Tom Boullay Date: Thu, 30 Apr 2026 15:06:26 +0200 Subject: [PATCH] resolve three component type exports --- src/components/three/SimpleModel.tsx | 2 +- src/components/three/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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";