Skip to content

Commit

Permalink
fix KNOWN_LANGUAGES option child element (#5118)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonymott authored Oct 19, 2022
1 parent e78bb2f commit 9d4716f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/docs/src/components/Header/LanguageSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const LanguageSelect: FunctionComponent<{ lang: string }> = ({ lang }) => {
{Object.entries(KNOWN_LANGUAGES).map(([key, value]) => {
return (
<option value={value} key={value}>
<span>{key}</span>
{key}
</option>
);
})}
Expand Down

0 comments on commit 9d4716f

Please sign in to comment.