Skip to content

Commit

Permalink
Fix reaction patch, take 1
Browse files Browse the repository at this point in the history
  • Loading branch information
NoaHimesaka1873 committed Jan 19, 2024
1 parent d5ccbab commit 0c9d3ab
Showing 1 changed file with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -228,17 +228,6 @@ class ActionBar extends PureComponent {
}
}

const canReact = signedIn && status.get('reactions').filter(r => r.get('count') > 0 && r.get('me')).size < maxReactions;
const reactButton = (
<IconButton
className='plus-icon'
onClick={this.handleNoOp} // EmojiPickerDropdown handles that
title={intl.formatMessage(messages.react)}
disabled={!canReact}
icon='plus'
/>
);

let replyIcon;
let replyIconComponent;

Expand Down

0 comments on commit 0c9d3ab

Please sign in to comment.