diff --git a/desktop/src/features/workflows/ui/WorkflowStepCard.tsx b/desktop/src/features/workflows/ui/WorkflowStepCard.tsx index e80ee4892..ac0f828e5 100644 --- a/desktop/src/features/workflows/ui/WorkflowStepCard.tsx +++ b/desktop/src/features/workflows/ui/WorkflowStepCard.tsx @@ -254,7 +254,7 @@ function StepConfigFields({ disabled={disabled} fallbackSeconds={DEFAULT_APPROVAL_TIMEOUT_SECONDS} id={`${prefix}-timeout`} - label="Timeout (optional)" + label="Timeout" onChange={(timeout) => onUpdate({ ...step, timeout })} placeholder="24h" value={step.timeout ?? ""} @@ -299,10 +299,6 @@ function StepConfigFields({ } } -function SectionHeading({ title }: { title: string }) { - return
- Defaults to the workflow timeout. -
-