|
|
@@ -24,6 +24,8 @@ type Props = {
|
|
|
}
|
|
|
|
|
|
const SearchResultList: FC<Props> = (props:Props) => {
|
|
|
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
+ const PagenationWrapperAny: any = PaginationWrapper;
|
|
|
return (
|
|
|
<>
|
|
|
{props.pages.map((page) => {
|
|
|
@@ -36,7 +38,7 @@ const SearchResultList: FC<Props> = (props:Props) => {
|
|
|
})}
|
|
|
{props.searchResultCount != null && props.searchResultCount > 0 && (
|
|
|
<div className="my-4 mx-auto">
|
|
|
- <PaginationWrapper
|
|
|
+ <PagenationWrapperAny
|
|
|
activePage={props.activePage}
|
|
|
changePage={props.onPagingNumberChanged}
|
|
|
totalItemsCount={props.searchResultCount || 0}
|