diff --git a/src/components/graph/BaseNode.tsx b/src/components/graph/BaseNode.tsx
index 360887c..58d01b5 100644
--- a/src/components/graph/BaseNode.tsx
+++ b/src/components/graph/BaseNode.tsx
@@ -80,11 +80,6 @@ export function BaseNode({
)}
style={{ margin: 0, touchAction: "none", userSelect: "none" }}
>
-
)}
{handles}
@@ -113,23 +108,6 @@ export function BaseNodeHeader({
);
}
-/**
- * The title text for the node. To maintain a native application feel, the title
- * text is not selectable.
- */
-export function BaseNodeHeaderTitle({
- className,
- ...props
-}: ComponentProps<"h3">) {
- return (
-
- );
-}
-
/**
* Standard node header: icon on the left, title taking the rest. Use for all node types.
* Inlined so it does not depend on BaseNodeHeader/BaseNodeHeaderTitle (avoids reference errors with HMR).
@@ -153,7 +131,7 @@ export function BaseNodeHeaderRow({
{icon}