Add missing import and fix apps reference.
parent
3a10cda2ca
commit
ea83d7eee2
|
@ -16,8 +16,9 @@ limitations under the License.
|
|||
|
||||
'use strict';
|
||||
|
||||
const React = require('react');
|
||||
const MatrixClientPeg = require('../../../MatrixClientPeg');
|
||||
import React from 'react';
|
||||
import MatrixClientPeg from '../../../MatrixClientPeg';
|
||||
import { _t } from '../../../languageHandler';
|
||||
|
||||
export default React.createClass({
|
||||
displayName: 'AppTile',
|
||||
|
|
|
@ -165,7 +165,7 @@ module.exports = React.createClass({
|
|||
});
|
||||
}
|
||||
this.setState({
|
||||
apps: this.apps,
|
||||
apps: apps,
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue