Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
onSearchChange = ({ value }) => {
this.setState({
suggestions: defaultSuggestionsFilter(
value,
this.props.mentions.toArray()
)
});
};
onSearchChange = ({ value }) => {
this.props.onSearchChange(value);
this.setState({
suggestions: defaultSuggestionsFilter(
value,
this.props.mentions.toArray()
)
});
};