react-tooltip
react-tooltip copied to clipboard
tooltip with big text duplicate it
how breaks line?

I encountered twice tooltips when settting only place, even with small text. :( I link another issue that talk about duplicate tooltips too.
My version: "react-tooltip": "^4.2.21",
Exemple
<input name="filter" type="text" className="mb-2" placeholder="Champs d’une commande"
onChange={this.handleInputChange.bind(this)} value={this.state.filter} size="sm" style={{ width:"300px" }}
data-tip='small text' />
<ReactTooltip place="bottom"/>
result:

Without place, I've no duplicate issue

✅ by reading the readme, I fixed the twice tooltips on my side by adding unique id and data-for on my elements. 👍