mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Appease the linter
This commit is contained in:
parent
5333114d7b
commit
c351ee3d30
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ export default React.createClass({
|
|||
const BaseDialog = sdk.getComponent('views.dialogs.BaseDialog');
|
||||
|
||||
const errorList = Object.keys(this.props.failedInvites)
|
||||
.map(address => <p>{address}: {this.props.failedInvites[address].errorText}</p>);
|
||||
.map(address => <p key={address}>{address}: {this.props.failedInvites[address].errorText}</p>);
|
||||
|
||||
return (
|
||||
<BaseDialog className='mx_RetryInvitesDialog'
|
||||
|
|
Loading…
Reference in a new issue