Skip to content

Commit

Permalink
fix: errors
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodiaslobo committed Nov 29, 2023
1 parent d2d6be0 commit 256c3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function Select({
{...rest}
>
{options.map((option) => (
<option value={option.key}>{option.name}</option>
<option key={option.key} value={option.key}>{option.name}</option>
))}
</select>
<ChevronDownIcon
Expand Down

0 comments on commit 256c3bb

Please sign in to comment.