From d5ab795e4cdbe3babb91a768aef10f11b4c09d24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Martin?= Date: Wed, 23 Jul 2025 23:04:39 +0200 Subject: [PATCH] Remove `type="email"` from username field in Register As the username doesn't have to be an email, having email as the type is incorrect. This change also makes it more consistent with the way it is defined in the login form. --- ui/src/user/Register.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/ui/src/user/Register.tsx b/ui/src/user/Register.tsx index 34c32d7..9a11abf 100644 --- a/ui/src/user/Register.tsx +++ b/ui/src/user/Register.tsx @@ -51,7 +51,6 @@ export default class RegistrationDialog extends Component { className="name" label="Name *" name="username" - type="email" value={name} onChange={this.handleChange.bind(this, 'name')} fullWidth