Skip to content

Commit 549b5fb

Browse files
committed
Fix Copilot comments
1 parent 4774fbe commit 549b5fb

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

webapp/_webapp/src/views/settings/sections/api-key-settings.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ const CustomModelSection = ({ isNew, onChange, model: customModel }: CustomModel
441441
className={detailInputClassName}
442442
value={String(maxOutput)}
443443
type="number"
444-
min={0}
444+
min={1}
445445
step="1"
446446
disabled={!isEditing || isProcessing}
447447
onChange={(e) => setMaxOutput(e.target.value === "" ? 0 : Math.trunc(Number(e.target.value)))}
@@ -487,7 +487,6 @@ const CustomModelSection = ({ isNew, onChange, model: customModel }: CustomModel
487487
</label>
488488
</Tooltip>
489489
<input
490-
id={`parallel-${id}`}
491490
className="ml-1"
492491
type="checkbox"
493492
checked={parallelToolCalls}
@@ -507,7 +506,6 @@ const CustomModelSection = ({ isNew, onChange, model: customModel }: CustomModel
507506
</label>
508507
</Tooltip>
509508
<input
510-
id={`store-${id}`}
511509
className="ml-1"
512510
type="checkbox"
513511
checked={store}

0 commit comments

Comments
 (0)