From a07736695e76b956f6fca5b461f9c087fd770029 Mon Sep 17 00:00:00 2001 From: Rishi556 Date: Wed, 3 Jan 2024 13:20:59 -0600 Subject: [PATCH] Fix pagination props being invalid in docs --- apps/material-react-table-docs/pages/docs/guides/pagination.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/material-react-table-docs/pages/docs/guides/pagination.mdx b/apps/material-react-table-docs/pages/docs/guides/pagination.mdx index 0b0e923dc..1aaee7756 100644 --- a/apps/material-react-table-docs/pages/docs/guides/pagination.mdx +++ b/apps/material-react-table-docs/pages/docs/guides/pagination.mdx @@ -104,7 +104,7 @@ const table = useMaterialReactTable({ columns, data, muiPaginationProps: { - rowsPerPageOptions: ['5', '10', '20'], + rowsPerPageOptions: [5, 10, 20], showFirstButton: false, showLastButton: false, },