I am using the material-table component and am using the stepped
pagination style. It works, but produces some console warnings:
Warning: Each child in a list should have a unique "key" prop.
Failed prop type: Invalid prop variant of value default supplied to ForwardRef(Button), expected one of ["text","outlined","contained"].
I've tried using various other options related to pagination such as pageSize, pageSizeOptions, and showFirstLastPageButtons to eliminate the warning.
options={{
pageSize: 5,
pageSizeOptions: [],
paginationType: 'stepped',
showFirstLastPageButtons: false,
}}