Skip to content

Commit

Permalink
Update pagination limit.
Browse files Browse the repository at this point in the history
  • Loading branch information
vikpe committed Jun 15, 2024
1 parent 4465564 commit 7c8f817
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/games/browser/settings/Pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import { btnSecondary, formInput, sizeSmall } from "../../ui/theme.ts";
import { useGames } from "../context.tsx";
import { useGameSettings } from "./context.tsx";

const PER_PAGE = 20;
const PER_PAGE = 15;

export const Pagination = () => {
const { count, hasGames } = useGames();
const { page, nextPage, prevPage } = useGameSettings();
Expand Down

0 comments on commit 7c8f817

Please sign in to comment.