From d430ee54e2987f2f1e094f7122d1dfe4aa631b87 Mon Sep 17 00:00:00 2001 From: Andres Date: Mon, 9 Oct 2023 13:26:10 +0200 Subject: [PATCH] temporarily comment out select from pagination --- src/components/ui/pagination/pagination.tsx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) 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 (