Skip to content

Commit

Permalink
Change recipes per page to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
T1LT committed Jan 21, 2024
1 parent c90c9cf commit 1d9cf4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/(recipes)/recipe-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { NextLink } from "@/components/pagination-link";
import { Suspense } from "react";
import clsx from "clsx";

const PER_PAGE = 20;
const PER_PAGE = 10;

function recipesWhere(q: string | null) {
return q != null && q.length
Expand Down

0 comments on commit 1d9cf4c

Please sign in to comment.