Børge Antonsen
Børge Antonsen
@rkit seems to work here, edit: seems to get callstack error though, investigating.. get change events in loop when I try to load the values (I use https://github.com/davidkpiano/react-redux-form ) edit2:...
you need to customize the parsePaste property, have a look at #111
workaround: ```ts const isInitialized = useRef(false); useEffect(() => { isInitialized.current = true; return () => { isInitialized.current = false; }; }, []); if (!isInitialized) return null; ```