You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change index.js line number 48
if (this.props.onChangeText) return this.props.onChangeText(text);
to
if (this.props.onChangeTagText) {
this.setState({ query: text });
return this.props.onChangeTagText(text);
}
and add property onChangeTagText
I want to get suggestion from backend on autocomplete.
The text was updated successfully, but these errors were encountered: