Compare commits

..

7 Commits

Author SHA1 Message Date
Vikhyath Mondreti
60053a0dd7 Merge remote-tracking branch 'origin/staging' into fix/onedrive 2026-02-04 22:46:23 -08:00
Vikhyath Mondreti
5f719b3746 remove manual validations 2026-02-04 22:42:01 -08:00
Vikhyath Mondreti
5fde0bd941 fix jira type checks 2026-02-04 22:36:23 -08:00
Vikhyath Mondreti
9e22d4aaa9 fix type 2026-02-04 22:27:27 -08:00
Vikhyath Mondreti
994224322a cleanup canonical tool param resolution code 2026-02-04 22:26:06 -08:00
Vikhyath Mondreti
a02102345e fix onedrive 2026-02-04 21:28:37 -08:00
Vikhyath Mondreti
e256261d53 fix(onedrive): canonical param required validation 2026-02-04 20:59:28 -08:00

View File

@@ -1288,13 +1288,6 @@ export function useWorkflowExecution() {
onBlockCompleteCallback: onBlockComplete,
})
const clientWorkflowState = executionWorkflowState || {
blocks: filteredStates,
edges: workflowEdges,
loops: latestWorkflowState.loops,
parallels: latestWorkflowState.parallels,
}
await executionStream.execute({
workflowId: activeWorkflowId,
input: finalWorkflowInput,
@@ -1304,12 +1297,14 @@ export function useWorkflowExecution() {
useDraftState: true,
isClientSession: true,
stopAfterBlockId,
workflowStateOverride: {
blocks: clientWorkflowState.blocks,
edges: clientWorkflowState.edges,
loops: clientWorkflowState.loops,
parallels: clientWorkflowState.parallels,
},
workflowStateOverride: executionWorkflowState
? {
blocks: executionWorkflowState.blocks,
edges: executionWorkflowState.edges,
loops: executionWorkflowState.loops,
parallels: executionWorkflowState.parallels,
}
: undefined,
callbacks: {
onExecutionStarted: (data) => {
logger.info('Server execution started:', data)