diff --git a/docs/data/data-grid/row-updates/LazyLoadingGrid.js b/docs/data/data-grid/row-updates/LazyLoadingGrid.js index dfa9f7f54db8..c2ceca12266b 100644 --- a/docs/data/data-grid/row-updates/LazyLoadingGrid.js +++ b/docs/data/data-grid/row-updates/LazyLoadingGrid.js @@ -72,7 +72,6 @@ export default function LazyLoadingGrid() { // Fetch rows as they become visible in the viewport const handleFetchRows = React.useCallback( async (params) => { - console.log(params); const { slice, total } = await fetchRow(params); apiRef.current.unstable_replaceRows(params.firstRowToRender, slice);