diff --git a/src/common/SimplePaginator.tsx b/src/common/SimplePaginator.tsx index 00e6e185..9ebc2ef4 100644 --- a/src/common/SimplePaginator.tsx +++ b/src/common/SimplePaginator.tsx @@ -17,7 +17,9 @@ interface SimplePaginatorProps { centered?: boolean; } -export const SimplePaginator: FC = ({ pagesCount, currentPage, setCurrentPage, centered = true }) => { +export const SimplePaginator: FC = ( + { pagesCount, currentPage, setCurrentPage, centered = true }, +) => { if (pagesCount < 2) { return null; }