diff --git a/src/components/ui/pagination/pagination.tsx b/src/components/ui/pagination/pagination.tsx index b72c8a5..3e43f0b 100644 --- a/src/components/ui/pagination/pagination.tsx +++ b/src/components/ui/pagination/pagination.tsx @@ -166,15 +166,17 @@ export type PerPageSelectProps = { onPerPageChange: (itemPerPage: number) => void } -export const PerPageSelect: FC = ({ - perPage, - perPageOptions, - onPerPageChange, -}) => { - const selectOptions = perPageOptions.map(value => ({ - label: value, - value, - })) +export const PerPageSelect: FC = ( + { + // perPage, + // perPageOptions, + // onPerPageChange, + } +) => { + // const selectOptions = perPageOptions.map(value => ({ + // label: value, + // value, + // })) return (