We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 580ae57 commit 4839a8eCopy full SHA for 4839a8e
apps/web-evals/src/app/runs/new/new-run.tsx
@@ -350,7 +350,7 @@ export function NewRun() {
350
name="timeout"
351
render={({ field }) => (
352
<FormItem>
353
- <FormLabel>Timeout (minutes)</FormLabel>
+ <FormLabel>Timeout (Minutes)</FormLabel>
354
<FormControl>
355
<div className="flex flex-row items-center gap-2">
356
<Slider
@@ -360,7 +360,7 @@ export function NewRun() {
360
step={1}
361
onValueChange={(value) => field.onChange(value[0])}
362
/>
363
- <div>{field.value} min</div>
+ <div>{field.value}</div>
364
</div>
365
</FormControl>
366
<FormMessage />
0 commit comments