mirror of https://github.com/vector-im/riot-web
Fix infinite spinner on email registration
Remove setTimeout on dialog display as it's no longer necessary and causes races.pull/21833/head
parent
57f01b83be
commit
02da6fdbd5
|
@ -76,10 +76,7 @@ function createRoom(opts) {
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
let modal;
|
const modal = Modal.createDialog(Loader, null, 'mx_Dialog_spinner');
|
||||||
setTimeout(()=>{
|
|
||||||
modal = Modal.createDialog(Loader, null, 'mx_Dialog_spinner');
|
|
||||||
}, 0);
|
|
||||||
|
|
||||||
let roomId;
|
let roomId;
|
||||||
return client.createRoom(createOpts).finally(function() {
|
return client.createRoom(createOpts).finally(function() {
|
||||||
|
|
Loading…
Reference in New Issue