mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-28 18:01:46 +02:00
Don't show spinner over encryption setup dialogs
Fixes https://github.com/vector-im/riot-web/issues/13051
This commit is contained in:
parent
b8a57aa6f2
commit
bce22c620f
@ -63,7 +63,9 @@ export default class SetupEncryptionToast extends React.PureComponent {
|
||||
{}, null, /* priority = */ false, /* static = */ true);
|
||||
} else {
|
||||
const Spinner = sdk.getComponent("elements.Spinner");
|
||||
const modal = Modal.createDialog(Spinner, null, 'mx_Dialog_spinner');
|
||||
const modal = Modal.createDialog(
|
||||
Spinner, null, 'mx_Dialog_spinner', /* priority */ false, /* static */ true,
|
||||
);
|
||||
try {
|
||||
await accessSecretStorage();
|
||||
await this._waitForCompletion();
|
||||
|
Loading…
x
Reference in New Issue
Block a user