We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80ab00a commit 42c29c0Copy full SHA for 42c29c0
packages/x-data-grid/src/hooks/features/rows/useGridRowsMeta.ts
@@ -271,7 +271,10 @@ export const useGridRowsMeta = (
271
apiRef.current.unstable_storeRowHeightMeasurement(rowId, height);
272
}
273
if (!isHeightMetaValid.current) {
274
- apiRef.current.requestPipeProcessorsApplication('rowHeight');
+ // Avoids "ResizeObserver loop completed with undelivered notifications" error
275
+ requestAnimationFrame(() => {
276
+ apiRef.current.requestPipeProcessorsApplication('rowHeight');
277
+ });
278
279
}),
280
).current;
0 commit comments