From b48b721f697c2388d0564394988b328ef70223f4 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Wed, 18 Feb 2026 21:39:34 +1300 Subject: [PATCH] fix: remove duplicate 3D option declarations in ConnectionDropMenu The rebase introduced duplicate THREE_D_TARGET_OPTIONS and THREE_D_SOURCE_OPTIONS declarations from the squashed release commit. Co-Authored-By: Claude Opus 4.6 --- src/components/ConnectionDropMenu.tsx | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/src/components/ConnectionDropMenu.tsx b/src/components/ConnectionDropMenu.tsx index c751475c..3b5bf4b9 100644 --- a/src/components/ConnectionDropMenu.tsx +++ b/src/components/ConnectionDropMenu.tsx @@ -367,32 +367,6 @@ const THREE_D_SOURCE_OPTIONS: MenuOption[] = [ }, ]; -// 3D target options (nodes that accept 3D input) -const THREE_D_TARGET_OPTIONS: MenuOption[] = [ - { - type: "glbViewer", - label: "3D Viewer", - icon: ( - - - - ), - }, -]; - -// 3D source options (nodes that produce 3D output) -const THREE_D_SOURCE_OPTIONS: MenuOption[] = [ - { - type: "generate3d", - label: "Generate 3D", - icon: ( - - - - ), - }, -]; - interface ConnectionDropMenuProps { position: { x: number; y: number }; handleType: "image" | "text" | "video" | "audio" | "3d" | "easeCurve" | null;