Merge pull request #1714 from RooVetGit/add_language_code_to_settings

Add language code to settings footer
This commit is contained in:
Matt Rubens 2025-03-16 21:26:51 -04:00 committed by GitHub
commit 6a700f3ad2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,7 +78,7 @@ export const SettingsFooter = ({
title={LANGUAGES[language]}>
{Object.entries(LANGUAGES).map(([code, name]) => (
<option key={code} value={code}>
{name}
{name} ({code})
</option>
))}
</select>