Actually appease the linter
This commit is contained in:
parent
5c2841323e
commit
31ec984c86
1 changed files with 3 additions and 1 deletions
|
@ -83,7 +83,7 @@ const Pill = createReactClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
// TODO: [REACT-WARNING] Replace with appropriate lifecycle event
|
// TODO: [REACT-WARNING] Replace with appropriate lifecycle event
|
||||||
async UNSAFE_componentWillReceiveProps(nextProps) { // eslint-disable-line new-cap
|
async UNSAFE_componentWillReceiveProps(nextProps) {
|
||||||
let resourceId;
|
let resourceId;
|
||||||
let prefix;
|
let prefix;
|
||||||
|
|
||||||
|
@ -159,6 +159,8 @@ const Pill = createReactClass({
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this._unmounted = false;
|
this._unmounted = false;
|
||||||
this._matrixClient = MatrixClientPeg.get();
|
this._matrixClient = MatrixClientPeg.get();
|
||||||
|
|
||||||
|
// eslint-disable-next-line new-cap
|
||||||
this.UNSAFE_componentWillReceiveProps(this.props); // HACK: We shouldn't be calling lifecycle functions ourselves.
|
this.UNSAFE_componentWillReceiveProps(this.props); // HACK: We shouldn't be calling lifecycle functions ourselves.
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue