diff --git a/examples/grouping-column/src/App.js b/examples/grouping-column/src/App.js index 638e169..f95f994 100644 --- a/examples/grouping-column/src/App.js +++ b/examples/grouping-column/src/App.js @@ -122,7 +122,7 @@ function Table({ columns, data }) { ) // We don't want to render all of the rows for this example, so cap - // it at 20 for this use case + // it at 100 for this use case const firstPageRows = rows.slice(0, 100) return ( diff --git a/examples/grouping/src/App.js b/examples/grouping/src/App.js index 728384c..44d0f9e 100644 --- a/examples/grouping/src/App.js +++ b/examples/grouping/src/App.js @@ -51,7 +51,7 @@ function Table({ columns, data }) { ) // We don't want to render all of the rows for this example, so cap - // it at 20 for this use case + // it at 100 for this use case const firstPageRows = rows.slice(0, 100) return (