diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx index bf637c03f..bd8303e01 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/workflow.tsx @@ -1173,7 +1173,7 @@ const WorkflowContent = React.memo(() => { block.parentId && (block.parentType === 'loop' || block.parentType === 'parallel') if (isInsideSubflow) return { canRun: false, reason: 'Cannot run from inside subflow' } - if (!dependenciesSatisfied) return { canRun: false, reason: 'Run previous blocks first' } + if (!dependenciesSatisfied) return { canRun: false, reason: 'Disabled: Run Blocks Before' } if (isNoteBlock) return { canRun: false, reason: undefined } if (isExecuting) return { canRun: false, reason: undefined }