diff --git a/app/views/pages/index.tsx b/app/views/pages/index.tsx index 125e038..a324034 100644 --- a/app/views/pages/index.tsx +++ b/app/views/pages/index.tsx @@ -6,7 +6,7 @@ import Card from "../components/card"; async function fetchPages(): Promise { const jwt = window.localStorage.getItem("jwt"); const res = await fetch( - `${import.meta.env.QUOT_API_ENDPOINT}/pages?order=updated.desc`, + `${import.meta.env.QUOT_API_ENDPOINT}/pages?order=updated.desc&limit=50`, { headers: jwt ? { authorization: `Bearer ${jwt}` } : {} } ); const data = (await res.json()) as Pages.Response;