rn,auth: trim the username
Fixes: https://github.com/jitsi/jitsi-meet/issues/5673
This commit is contained in:
parent
95a5b8a8c1
commit
a8b8612304
|
@ -264,7 +264,7 @@ class LoginDialog extends Component<Props, State> {
|
|||
*/
|
||||
_onUsernameChange(text) {
|
||||
this.setState({
|
||||
username: text
|
||||
username: text.trim()
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue