Fix language picker showing opposite language on login page

This commit is contained in:
Maurice
2026-03-24 21:58:24 +01:00
parent c1e568cb1e
commit 3fd2410ba6

View File

@@ -268,7 +268,7 @@ export default function LoginPage() {
onMouseLeave={e => e.currentTarget.style.background = 'rgba(0,0,0,0.06)'}
>
<Globe size={14} />
{language === 'en' ? 'DE' : 'EN'}
{language === 'en' ? 'EN' : 'DE'}
</button>
{/* Left — branding */}