another workflowid pass through

This commit is contained in:
Vikhyath Mondreti
2026-03-06 18:25:36 -08:00
parent 94abc424be
commit adea9db89d

View File

@@ -192,7 +192,7 @@ function extractSelectorContext(
workflowId: string
): SelectorContext {
const block = currentState.blocks?.[blockId]
if (!block?.subBlocks) return {}
if (!block?.subBlocks) return { workflowId }
return buildSelectorContextFromBlock(block.type, block.subBlocks, { workflowId })
}