Gaurav Sobti
Gaurav Sobti
Hi, since there was no activity on this issue for 9 days. I have created a PR and have made sure to add a test.
@mnajdova In the latest version of the library, we don't have this problem, as we can observe here https://codesandbox.io/s/p7njj6?file=/demo.tsx (It's the same example just with latest library) But this issue...
Should we close this issue?
`import { useEffect, useRef, useState } from "react"; import "./styles.css"; import SimpleMDE from "simplemde"; import "simplemde/dist/simplemde.min.css"; export default function App() { const textareaRef = useRef(); const [instance, setInstance] = useState();...