In the image tag i got src="[object Object]"
I ouput that data in console and in dom. Everything looks fine. But When i pass that data into ReactQuill component, things get weird and it gets [object Object] in src of image tag.
<Container>
{article && <>
{article.content.toString()}
<br></br>
{article.content}
</>}
<ReactQuill
ref={(el) => {
quillRef = el
} }
theme="snow"
value={article?.content}
// value={article.content || ''}
onChange={handleChangeEditor}
formats={formats}
modules={modules}
padding={0}
/>
<Container/>