From dfb5c82447da4fccae1ca7744b142d49b8c536f0 Mon Sep 17 00:00:00 2001 From: Francisco Salgueiro Date: Mon, 5 Feb 2024 11:05:43 +0000 Subject: [PATCH] remove limit on tournament games --- src/utils/db.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/db.ts b/src/utils/db.ts index 26617977..894a256a 100644 --- a/src/utils/db.ts +++ b/src/utils/db.ts @@ -275,8 +275,6 @@ export async function getTournamentGames(file: string, id: number) { sort: "id", tournament_id: id, skip_count: true, - pageSize: 200, - page: 1, }); }