Henrik Qvigstad

Results 6 comments of Henrik Qvigstad

@MartijnHols How did you disable video?

> Running into this issue on an app I'm working on as well. What's really weird is this sequence: > > 1. Trigger hotkey, causing rerender > 2. Hotkeys are...

My example is rather complicated. I have multiple GlobalHotKeys instances (that work as expected) in play in addition the HotKeys component that is giving me trouble. I attempted to reproduce...

We are something different, where the orthogonal (width) changes causes the row heights to change, but `translateY`s doesn't update, even if we force a re-render. we are still on 2.9.0...

My solution when row height changes due to table width change (layout) ``` const [tableRect, tableRef] = useBoundingClientRectRef(['width']); const width = Math.round(tableRect?.width); useEffect(() => rowVirtualizer.measure(), [rowVirtualizer, width]); ``` useBoundingClientRectRef is...