Skip to content

Commit

Permalink
fix missing key
Browse files Browse the repository at this point in the history
  • Loading branch information
abi committed Jan 9, 2024
1 parent 8a431c0 commit 955d1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/OutputSettingsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function OutputSettingsSection({
<SelectContent>
<SelectGroup>
{Object.values(Stack).map((stack) => (
<SelectItem value={stack}>
<SelectItem key={stack} value={stack}>
<div className="flex items-center">
{generateDisplayComponent(stack)}
{STACK_DESCRIPTIONS[stack].inBeta && (
Expand Down

0 comments on commit 955d1a6

Please sign in to comment.