const refCnt = useRef<TableVirtuosoHandle>(null)
....
<TableVirtuoso
ref={refCnt}
.....
//In code
refCnt.current.scrollTo({left: scrollLeftValue}) // <-- work correct. Scroll left
///
refCnt.current.scrollTo({top: scrollTopValue}) // <-- work corrent. Scroll top
// refCnt.current.scrollTo({top: scrollTopValue, left: scrollLeftValue }) // <-- bug. Int scroll left and to then bottom of table
/>
Expected behavior
refCnt.current.scrollTo({top: scrollTopValue, left: scrollLeftValue }) // need to scroll to left and top
Describe the bug
Expected behavior
Additional context