Wendell. D. Encorporado

Results 4 comments of Wendell. D. Encorporado

I already wrapped my modules in useMemo(), still these: `const editor = quillRef.current.getEditor(); // The error here TypeError: quillRef.current.getEditor is not a function` `const range = quillRef.current.getEditor().getSelection(); // This also...

I have found a solution. they used a forwardRef. Dynamic import doesn't support ref. Solution: https://github.com/zenoamaro/react-quill/issues/642#issuecomment-717661518 `const QuillNoSSRWrapper = dynamic( async () => { const { default: RQ } =...

if anyone still having an error accessing the Editor's getSelection function, here's the solution I have found. useRef does not work in dynamic import in Next.js. here's the solution: ```jsx...

> > I'm facing the same issue as well, @fiorins were you able to resolve this? If yes, can you share your the fix. > > Hi, YES, I found...