From 21bf3b30a62f9b78ad049f5744966da660b61c4f Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Fri, 3 Apr 2026 02:16:54 +0200 Subject: [PATCH] Remove unused imports from App.tsx and transform-session.ts --- src/app/App.tsx | 3 +-- src/core/transform-session.ts | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) 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";