Skip to content

Commit 4839a8e

Browse files
committed
More tweaks
1 parent 580ae57 commit 4839a8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web-evals/src/app/runs/new/new-run.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ export function NewRun() {
350350
name="timeout"
351351
render={({ field }) => (
352352
<FormItem>
353-
<FormLabel>Timeout (minutes)</FormLabel>
353+
<FormLabel>Timeout (Minutes)</FormLabel>
354354
<FormControl>
355355
<div className="flex flex-row items-center gap-2">
356356
<Slider
@@ -360,7 +360,7 @@ export function NewRun() {
360360
step={1}
361361
onValueChange={(value) => field.onChange(value[0])}
362362
/>
363-
<div>{field.value} min</div>
363+
<div>{field.value}</div>
364364
</div>
365365
</FormControl>
366366
<FormMessage />

0 commit comments

Comments
 (0)