Fix some UI issues

This commit is contained in:
Urtzi Alfaro
2025-09-24 19:15:29 +02:00
parent 2de1e6ce40
commit be1fec17c4
3 changed files with 10 additions and 10 deletions

View File

@@ -93,21 +93,21 @@ export const languageConfig = {
name: 'Español',
nativeName: 'Español',
code: 'es',
flag: '🇪🇸',
flag: 'es', // Using language code instead of flag for proper language identification
rtl: false,
},
en: {
name: 'English',
nativeName: 'English',
code: 'en',
flag: '🇺🇸',
flag: 'en', // Using language code instead of flag for proper language identification
rtl: false,
},
eu: {
name: 'Euskera',
name: 'Basque',
nativeName: 'Euskera',
code: 'eu',
flag: '🏴󠁥󠁳󠁰󠁶󠁿',
flag: 'eu', // Using language code instead of flag for proper language identification
rtl: false,
},
};