diff --git a/docs/data/material/components/table/CustomPaginationActionsTable.js b/docs/data/material/components/table/CustomPaginationActionsTable.js index a5b38d95388375..f3eafc5c9acbf8 100644 --- a/docs/data/material/components/table/CustomPaginationActionsTable.js +++ b/docs/data/material/components/table/CustomPaginationActionsTable.js @@ -148,11 +148,13 @@ export default function CustomPaginationActionsTable() { count={rows.length} rowsPerPage={rowsPerPage} page={page} - SelectProps={{ - inputProps: { - 'aria-label': 'rows per page', + slotProps={{ + select: { + inputProps: { + 'aria-label': 'rows per page', + }, + native: true, }, - native: true, }} onPageChange={handleChangePage} onRowsPerPageChange={handleChangeRowsPerPage}