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
Warning: A component is `contentEditable` and contains `children` managed by React. It is now your responsibility to guarantee that none of those nodes are unexpectedly modified or duplicated. This is probably not intentional.
Some digging into the issue shows people creating rte are facing this issue and there is a way to suppress this warning. Is there any way to suppress it with react-rte?
Really unsure as to what this warning means and why it is there?
The text was updated successfully, but these errors were encountered:
Your code looks good. That warning you're seeing is harmless. It's actually a legacy warning built-in to React. You have a two choices if you want to get rid of it:
Upgrade to React 0.15 (It's not a final release, it's release candidate v15.0.0-rc.2)
Shim console object to filter out this warning. I've used this with some success:
console.error=(function(_error){returnfunction(message){if(typeofmessage!=='string'||message.indexOf('component is `contentEditable`')===-1){_error.apply(console,arguments);}};})(console.error);
How to use this component with formsy-react? Here is how I tried it.
I get the following issue
Some digging into the issue shows people creating rte are facing this issue and there is a way to suppress this warning. Is there any way to suppress it with react-rte?
Really unsure as to what this warning means and why it is there?
The text was updated successfully, but these errors were encountered: