From c75c629aaf7b78e80251b4d288b3e16162d01c89 Mon Sep 17 00:00:00 2001 From: wonderlandpark Date: Sun, 9 May 2021 11:56:02 +0900 Subject: [PATCH] types: searchParams is optional prop --- components/Paginator.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Paginator.tsx b/components/Paginator.tsx index 9abe421..1f5d744 100644 --- a/components/Paginator.tsx +++ b/components/Paginator.tsx @@ -77,7 +77,7 @@ interface PaginatorProps { pathname: string currentPage: number totalPage: number - searchParams: Record + searchParams?: Record } export default Paginator