fix(dashboard): map merge workflow nodes in editor

This commit is contained in:
Phil Larson
2026-06-11 17:33:00 -07:00
parent 151277ac4c
commit 8a4cc12d67

View File

@@ -173,7 +173,6 @@ function isSameKindEditorNodeKind(
function editorKind(node: WorkflowIr["nodes"][number]): WorkflowEditorNodeKind {
const seam = node.config?.seam;
if (seam === "merge") return "merge";
const mapped = GRAPH_ONLY_EDITOR_KIND[node.kind];
if (mapped) return mapped;