From acb4f54512c630d8b0e7f136001cad73d8e73d89 Mon Sep 17 00:00:00 2001 From: Savin Angel-Mario Date: Thu, 21 Mar 2024 22:53:32 +0200 Subject: [PATCH] Fixed category limit --- src/lib/app.ts | 2 +- src/routes/category/[id].tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/app.ts b/src/lib/app.ts index 9b8a19f..4b3dfc9 100644 --- a/src/lib/app.ts +++ b/src/lib/app.ts @@ -1,7 +1,7 @@ import "dotenv"; export const APP = { - version: "5.2.1", + version: "5.2.2", codename: "Fabiana", githubRepo: "https://github.com/notangelmario/paquet", umamiUrl: Deno.env.get("UMAMI_URL"), diff --git a/src/routes/category/[id].tsx b/src/routes/category/[id].tsx index 2686245..bbbb0bd 100644 --- a/src/routes/category/[id].tsx +++ b/src/routes/category/[id].tsx @@ -24,7 +24,7 @@ export default async function Category(_: Request, ctx: RouteContext) { }); } - const apps = await getAppsByCategory(10, category); + const apps = await getAppsByCategory(50, category); if (!apps) { return new Response("Not found", {