diff --git a/src/components/structures/GroupView.js b/src/components/structures/GroupView.js
index fcb1885261..9140ee2c71 100644
--- a/src/components/structures/GroupView.js
+++ b/src/components/structures/GroupView.js
@@ -37,10 +37,6 @@ module.exports = React.createClass({
},
componentWillMount: function() {
- this.setState({
- phase: "GroupView.LOADING",
- summary: null,
- })
this._loadGroupFromServer(this.props.groupId)
},
@@ -62,7 +58,7 @@ module.exports = React.createClass({
});
}, (err) => {
this.setState({
- phase: err.httpStatus == 404 ? "GroupView.NOT_FOUND" :"GroupView.ERROR",
+ phase: err.httpStatus === 404 ? "GroupView.NOT_FOUND" : "GroupView.ERROR",
summary: null,
error: err,
});
@@ -77,9 +73,9 @@ module.exports = React.createClass({
return