diff --git a/app/w/[id]/components/workflow-block/components/sub-block/components/eval-input.tsx b/app/w/[id]/components/workflow-block/components/sub-block/components/eval-input.tsx index 38cdeadfe2..23a49af2a4 100644 --- a/app/w/[id]/components/workflow-block/components/sub-block/components/eval-input.tsx +++ b/app/w/[id]/components/workflow-block/components/sub-block/components/eval-input.tsx @@ -139,7 +139,7 @@ export function EvalInput({ blockId, subBlockId }: EvalInputProps) { value={metric.name} onChange={(e) => updateMetric(metric.id, 'name', e.target.value)} placeholder="Accuracy" - className="text-muted-foreground placeholder:text-muted-foreground/50" + className="placeholder:text-muted-foreground/50" /> @@ -148,8 +148,8 @@ export function EvalInput({ blockId, subBlockId }: EvalInputProps) { updateMetric(metric.id, 'description', e.target.value)} - placeholder="How well does it meet the requirements?" - className="text-muted-foreground placeholder:text-muted-foreground/50" + placeholder="How accurate is the response?" + className="placeholder:text-muted-foreground/50" /> @@ -161,7 +161,7 @@ export function EvalInput({ blockId, subBlockId }: EvalInputProps) { value={metric.range.min} onChange={(e) => updateRange(metric.id, 'min', e.target.value)} onBlur={(e) => handleRangeBlur(metric.id, 'min', e.target.value)} - className="text-muted-foreground placeholder:text-muted-foreground/50" + className="placeholder:text-muted-foreground/50" />