Skip to content

Commit

Permalink
Fixed category limit
Browse files Browse the repository at this point in the history
  • Loading branch information
notangelmario committed Mar 21, 2024
1 parent d8e0c4c commit acb4f54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/app.ts
Original file line number Diff line number Diff line change
@@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion src/routes/category/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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", {
Expand Down

1 comment on commit acb4f54

@deno-deploy
Copy link
Contributor

@deno-deploy deno-deploy bot commented on acb4f54 Mar 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Failed to deploy:

Module not found "file:///src/main.ts".

Please sign in to comment.