feat(react/settings): port content languages

This commit is contained in:
Elian Doran
2025-08-15 10:26:25 +03:00
parent c039f06c2b
commit c368ec3c38
6 changed files with 70 additions and 67 deletions

View File

@@ -40,7 +40,8 @@ function FormRadio({ name, value, label, currentValue, onChange, labelClassName
name={useUniqueName(name)}
value={value}
checked={value === currentValue}
onChange={e => onChange((e.target as HTMLInputElement).value)} />
onChange={e => onChange((e.target as HTMLInputElement).value)}
/>
{label}
</label>
)