Removed unused code in ComposeForm

• Removed:
- unused code in ComposeForm
This commit is contained in:
mgabdev 2020-11-04 21:29:07 -06:00
parent bab6d90981
commit d4129f6ad7

@ -170,15 +170,6 @@ class ComposeForm extends ImmutablePureComponent {
this.form = c
}
handleEmojiPick = (data) => {
// : todo : with rich text
const { text } = this.props
const position = this.autosuggestTextarea.textbox.selectionStart
const needsSpace = data.custom && position > 0 && !ALLOWED_AROUND_SHORT_CODE.includes(text[position - 1])
this.props.onPickEmoji(position, data, needsSpace)
}
render() {
const {
intl,
@ -492,7 +483,6 @@ ComposeForm.propTypes = {
onSuggestionSelected: PropTypes.func.isRequired,
onChangeSpoilerText: PropTypes.func.isRequired,
onPaste: PropTypes.func.isRequired,
onPickEmoji: PropTypes.func.isRequired,
showSearch: PropTypes.bool,
anyMedia: PropTypes.bool,
shouldCondense: PropTypes.bool,