fix linting errors

pull/10616/head
Jade McGough 2016-11-03 12:36:02 -07:00
parent cec7ad85e7
commit ab08c4750f
1 changed files with 4 additions and 4 deletions

View File

@ -21,14 +21,14 @@ const AlertsApp = React.createClass({
getInitialState() {
return {
alerts: []
alerts: [],
};
},
componentDidMount() {
return getAlerts(this.props.source.links.proxy).then((resp) => {
this.setState({alerts: resp.alerts})
});
return getAlerts(this.props.source.links.proxy).then((resp) => {
this.setState({alerts: resp.alerts});
});
},
render() {