summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_info.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/post_info.jsx')
-rw-r--r--web/react/components/post_info.jsx9
1 files changed, 0 insertions, 9 deletions
diff --git a/web/react/components/post_info.jsx b/web/react/components/post_info.jsx
index e06baee87..cf01747f0 100644
--- a/web/react/components/post_info.jsx
+++ b/web/react/components/post_info.jsx
@@ -5,15 +5,6 @@ var UserStore = require('../stores/user_store.jsx');
var utils = require('../utils/utils.jsx');
module.exports = React.createClass({
- componentDidMount: function() {
- UserStore.addStatusesChangeListener(this._onChange);
- },
- componentWillUnmount: function() {
- UserStore.removeStatusesChangeListener(this._onChange);
- },
- _onChange: function() {
- this.forceUpdate();
- },
getInitialState: function() {
return { };
},