diff --git a/src/frontend/src/stores/flowStore.ts b/src/frontend/src/stores/flowStore.ts index 7170ad038..93080d2ee 100644 --- a/src/frontend/src/stores/flowStore.ts +++ b/src/frontend/src/stores/flowStore.ts @@ -306,6 +306,7 @@ const useFlowStore = create((set, get) => ({ .nodes.find( (node) => node.id === connection.source || node.id === connection.target ); + const sourceType = findNode?.data?.type; let isIoIn = false; let isIoOut = false; @@ -333,7 +334,6 @@ const useFlowStore = create((set, get) => ({ (scapeJSONParse(connection.targetHandle!) as targetHandleType) .type === "Text", markerEnd: isIoIn || isIoOut ? { ...commonMarkerProps } : undefined, - markerStart: isIoIn || isIoOut ? { ...commonMarkerProps } : undefined, }, oldEdges );