Pier-Luc Gendreau

Results 69 comments of Pier-Luc Gendreau

Did anyone ever find a definitive fix to this issue? Edit: jjhoyt's fix works well actually. Perhaps a more solid implementation could be added to the bundle.

For us, the last working version is `3.0.0-beta.62`. Every version from `3.0.0-beta.63` to `3.5.0` fails our tests.

This is quite an annoyance because not only CI passes, but the project deployed notification is also being sent.

@roncohen As long as there is an API and can be automated :-)

@alexanderluiscampino Did you find where the problem is and/or some sort of workaround? It's not ideal but for now I'm reapplying the filter where I need it like this: `matchSorter(subRows,...

If I may, is there any chance this change could be v9 and the current alpha become v10?

Instead of writing this: ```tsx function Component() { useReactTable({ data: actionData ?? [], }) } ``` ...write this: ```tsx const EMPTY_ARRAY = [] as const; function Component() { useReactTable({ data:...

We've had a problem with 2.1.3 that's likely related: a Listbox inside a Dialog can be opened but not interacted with in any way. 2.1.2 worked as expected.

FWIW, I noticed that tsx starts up significantly faster with `{ "type": "module" }`