Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix typo preventing custom status from deregistering listeners on tiles
Browse files Browse the repository at this point in the history
  • Loading branch information
turt2live committed Mar 29, 2019
1 parent 99dc2c4 commit 0258f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/rooms/MemberTile.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = React.createClass({
user.on("User._unstable_statusMessage", this._onStatusMessageCommitted);
},

componentWillUmount() {
componentWillUnmount() {
const { user } = this.props.member;
if (!user) {
return;
Expand Down

0 comments on commit 0258f61

Please sign in to comment.