You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
Revert 2040587826
This commit is contained in:
@@ -188,20 +188,11 @@ export default class AddThreepid {
|
|||||||
// pop up an interactive auth dialog
|
// pop up an interactive auth dialog
|
||||||
const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog");
|
const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog");
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
Modal.createTrackedDialog('Add Email', '', InteractiveAuthDialog, {
|
||||||
Modal.createTrackedDialog('Add Email', '', InteractiveAuthDialog, {
|
title: _t("Add Email Address"),
|
||||||
title: _t("Add Email Address"),
|
matrixClient: MatrixClientPeg.get(),
|
||||||
matrixClient: MatrixClientPeg.get(),
|
authData: e.data,
|
||||||
authData: e.data,
|
makeRequest: this._makeAddThreepidOnlyRequest,
|
||||||
makeRequest: this._makeAddThreepidOnlyRequest,
|
|
||||||
onFinished: (success) => {
|
|
||||||
if (success) {
|
|
||||||
resolve();
|
|
||||||
} else {
|
|
||||||
reject();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -289,20 +280,11 @@ export default class AddThreepid {
|
|||||||
// pop up an interactive auth dialog
|
// pop up an interactive auth dialog
|
||||||
const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog");
|
const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog");
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
Modal.createTrackedDialog('Add MSISDN', '', InteractiveAuthDialog, {
|
||||||
Modal.createTrackedDialog('Add MSISDN', '', InteractiveAuthDialog, {
|
title: _t("Add Phone Number"),
|
||||||
title: _t("Add Phone Number"),
|
matrixClient: MatrixClientPeg.get(),
|
||||||
matrixClient: MatrixClientPeg.get(),
|
authData: e.data,
|
||||||
authData: e.data,
|
makeRequest: this._makeAddThreepidOnlyRequest,
|
||||||
makeRequest: this._makeAddThreepidOnlyRequest,
|
|
||||||
onFinished: (success) => {
|
|
||||||
if (success) {
|
|
||||||
resolve();
|
|
||||||
} else {
|
|
||||||
reject();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user