feat(language): enhance language options with native and translated names

This commit is contained in:
alexsparkes
2026-01-24 17:25:53 +00:00
parent c88b3cc03c
commit 3e5dddf617
2 changed files with 49 additions and 4 deletions

View File

@@ -75,7 +75,7 @@ const Radio = memo((props) => {
value={option.value}
control={<RadioUI />}
label={option.name}
key={option.name}
key={option.value}
/>
))}
</RadioGroup>