diff --git a/frontends/nextjs/src/lib/workflow/execution/execute-node.ts b/frontends/nextjs/src/lib/workflow/execution/execute-node.ts index d7a397933..ca7791fa7 100644 --- a/frontends/nextjs/src/lib/workflow/execution/execute-node.ts +++ b/frontends/nextjs/src/lib/workflow/execution/execute-node.ts @@ -1,11 +1,11 @@ import type { WorkflowNode } from '../types/level-types' -import type { WorkflowExecutionContext } from './workflow-execution-context' -import type { WorkflowState } from './workflow-state' -import { executeActionNode } from './execute-action-node' -import { executeConditionNode } from './execute-condition-node' -import { executeLuaNode } from './execute-lua-node' -import { executeTransformNode } from './execute-transform-node' -import { logToWorkflow } from './log-to-workflow' +import type { WorkflowExecutionContext } from '../workflow-execution-context' +import type { WorkflowState } from '../workflow-state' +import { executeActionNode } from '../nodes/execute-action-node' +import { executeConditionNode } from '../nodes/execute-condition-node' +import { executeLuaNode } from '../nodes/execute-lua-node' +import { executeTransformNode } from '../nodes/execute-transform-node' +import { logToWorkflow } from '../log-to-workflow' type RetryConfig = { maxAttempts?: number