chore: fix docs

This commit is contained in:
mathuo 2025-01-11 14:58:06 +00:00
parent 6678ae24e0
commit 239c99ffe5
No known key found for this signature in database
GPG Key ID: C6EEDEFD6CA07281

View File

@ -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>