mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
Fix indent
This commit is contained in:
parent
67299842e3
commit
261bdab156
1 changed files with 2 additions and 2 deletions
|
@ -117,8 +117,8 @@ module.exports = React.createClass({
|
|||
// Gather the account 3PIDs
|
||||
const account3pids = await MatrixClientPeg.get().getThreePids();
|
||||
this.setState({
|
||||
accountEmails: account3pids.threepids.filter(b => b.medium === 'email')
|
||||
.map(b => b.address),
|
||||
accountEmails: account3pids.threepids
|
||||
.filter(b => b.medium === 'email').map(b => b.address),
|
||||
});
|
||||
// If we have an IS connected, use that to lookup the email and
|
||||
// check the bound MXID.
|
||||
|
|
Loading…
Reference in a new issue