Jordan Lawrence

Results 2 comments of Jordan Lawrence

A workaround I've found it to use `window.requestAnimationFrame`: ``` useEffect(() => { if (itemsUpdated) { window.requestAnimationFrame(() => elRef.current?.scrollIntoView() ) } }, []) ```

Just a thought on whether there are any tests we can add around this @pedrobonamin ?