Skip to content

Commit

Permalink
chore: fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mathuo committed Jan 11, 2025
1 parent 6678ae2 commit 239c99f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/src/pages/demo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const ThemeToggle: React.FC = () => {
value={theme}
>
{themeConfig.map((theme) => {
return <option>{theme.id}</option>;
return <option key={theme.id}>{theme.id}</option>;
})}
</select>
</div>
Expand Down

0 comments on commit 239c99f

Please sign in to comment.