rn,auth: trim the username

Fixes: https://github.com/jitsi/jitsi-meet/issues/5673
This commit is contained in:
Saúl Ibarra Corretgé 2020-06-16 14:21:33 +02:00 committed by Saúl Ibarra Corretgé
parent 95a5b8a8c1
commit a8b8612304
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ class LoginDialog extends Component<Props, State> {
*/
_onUsernameChange(text) {
this.setState({
username: text
username: text.trim()
});
}