diff --git a/packages/client/src/pages/find/index.tsx b/packages/client/src/pages/find/index.tsx index bfa6c9c3..74cc274c 100644 --- a/packages/client/src/pages/find/index.tsx +++ b/packages/client/src/pages/find/index.tsx @@ -18,6 +18,7 @@ const grid = { }; const { Title } = Typography; +const PAGESIZE = 12; const Page: NextPage = () => { const { data, loading, error, setPage } = useAllPublicWikis(); @@ -59,9 +60,11 @@ const Page: NextPage = () => { )} emptyContent={} /> -
- -
+ {data.total > PAGESIZE && ( +
+ +
+ )} )} />