diff --git a/src/app/App.tsx b/src/app/App.tsx index 852def97..3eff6cd7 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -50,8 +50,7 @@ import { type ActiveTransformSession, type TransformAxis, type TransformOperation, - type TransformSessionSource, - type TransformTarget + type TransformSessionSource } from "../core/transform-session"; import type { Vec2, Vec3 } from "../core/vector"; import { diff --git a/src/core/transform-session.ts b/src/core/transform-session.ts index 1271f928..1907bd13 100644 --- a/src/core/transform-session.ts +++ b/src/core/transform-session.ts @@ -8,7 +8,7 @@ import { type EntityInstance, type EntityKind } from "../entities/entity-instances"; -import { cloneModelInstance, getModelInstanceKindLabel, type ModelInstance } from "../assets/model-instances"; +import { cloneModelInstance, getModelInstanceKindLabel } from "../assets/model-instances"; import type { ViewportPanelId } from "../viewport-three/viewport-layout"; export type TransformOperation = "translate" | "rotate" | "scale";