Open avoinea opened 3 years ago
I've been getting this same error. It's caused by the call to renderToStaticMarkup from on the client side within WYSIWYG widget's edit view whenever you change it's value
edit: Looks like it's actually coming from within react-redux. Likely an interplay between react-redux's implementation of useIsomorphicEffect and it being called from within renderToStaticMarkup
on the client. According to the React docs, we should change the method we're using based on whether we're on the client or server: https://reactjs.org/docs/react-dom-server.html#rendertostaticmarkup
@tiberiuichim This is A little bit past my current understanding of React implementation details, does this sounds about right?
@JeffersonBledsoe you're unto something, I'll test it.