diff --git a/src/components/nodes/SmartTextNode.tsx b/src/components/nodes/SmartTextNode.tsx
index 381d8cc7..1b7dba48 100644
--- a/src/components/nodes/SmartTextNode.tsx
+++ b/src/components/nodes/SmartTextNode.tsx
@@ -13,7 +13,7 @@ import { LLM_MODELS } from "@/lib/llmModels";
import { useWorkflowStore } from "@/store/workflowStore";
import { SmartTextNodeData } from "@/types";
import { formatUserFacingError } from "@/utils/userFacingErrors";
-import { getSmartTextInputHandles, SINGLE_INPUT_HANDLE_ID, SINGLE_OUTPUT_HANDLE_ID, type NodeInputHandleDescriptor } from "@/utils/nodeHandles";
+import { SINGLE_INPUT_HANDLE_ID, SINGLE_OUTPUT_HANDLE_ID } from "@/utils/nodeHandles";
import { deriveSmartTextMode } from "@/utils/smartTextMode";
import { editorHtmlToMarkdown, insertEditorDivider, markdownToEditorHtml } from "@/utils/markdownEditor";
import { readTextDocumentFile } from "@/utils/textDocumentImport";
@@ -30,8 +30,7 @@ function getSmartTextManualTitle(id: string, data: SmartTextNodeData, textInputL
return match ? `${textInputLabel} ${match[1]}` : textInputLabel;
}
-function SmartTextInputHandles({ handles, selected }: { handles: NodeInputHandleDescriptor[]; selected?: boolean }) {
- void handles;
+function SmartTextInputHandles({ selected }: { selected?: boolean }) {
const showLabels = useShowHandleLabels(selected);
return (
@@ -212,12 +211,10 @@ function SmartTextNeutralView({
id,
data,
selected,
- inputHandles,
}: {
id: string;
data: SmartTextNodeData;
selected?: boolean;
- inputHandles: NodeInputHandleDescriptor[];
}) {
const { t } = useI18n();
const updateNodeData = useWorkflowStore((state) => state.updateNodeData);
@@ -244,7 +241,7 @@ function SmartTextNeutralView({
minHeight={SMART_TEXT_MIN_DIMENSIONS.height}
fullBleed
>
-