Remove debugging that causes email addresses to load forever
This was left in by accident for https://github.com/matrix-org/matrix-react-sdk/pull/4557pull/21833/head
parent
8a9502a8cb
commit
cae28b48d6
|
@ -348,7 +348,7 @@ export default class GeneralUserSettingsTab extends React.Component {
|
||||||
// For newer homeservers with separate 3PID add and bind methods (MSC2290),
|
// For newer homeservers with separate 3PID add and bind methods (MSC2290),
|
||||||
// there is no such concern, so we can always show the HS account 3PIDs.
|
// there is no such concern, so we can always show the HS account 3PIDs.
|
||||||
if (this.state.haveIdServer || this.state.serverSupportsSeparateAddAndBind === true) {
|
if (this.state.haveIdServer || this.state.serverSupportsSeparateAddAndBind === true) {
|
||||||
const emails = this.state.loading3pids || true
|
const emails = this.state.loading3pids
|
||||||
? <Spinner />
|
? <Spinner />
|
||||||
: <EmailAddresses
|
: <EmailAddresses
|
||||||
emails={this.state.emails}
|
emails={this.state.emails}
|
||||||
|
|
Loading…
Reference in New Issue