+ {credentials.map((cred, idx) => {
+ // Login uses the USERNAME (the email is just informational metadata
+ // about the demo user -- the auth flow keys off `username`).
+ const loginValue = cred.username || '';
+ const pwd = cred.password || '';
+ const rowKey = `${idx}-${loginValue}`;
+ return (
+
+ {cred.role &&
{cred.role}
}
+
+ {t('Login')}:
+ {loginValue}
+
+
+
+ {t('Passwort')}:
+ {pwd}
+
+
+ {cred.email && (
+
+ {t('E-Mail')}:
+ {cred.email}
+
+ )}
+