Skip to content

Commit

Permalink
Merge pull request #12 from davidhorm/fix/query-limit
Browse files Browse the repository at this point in the history
fix: query limit to 20
  • Loading branch information
davidhorm authored Jul 29, 2024
2 parents b77b739 + 70c0926 commit 347d867
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type {
const transformToThingIds = (i: Collection["items"]["item"][number]) =>
i.objectid;

const THING_QUERY_LIMIT = 1200;
const THING_QUERY_LIMIT = 20; // TODO unit test. also render error in future

const transformToUniqueChunks = (games?: Collection) =>
_.chunk(
Expand Down

0 comments on commit 347d867

Please sign in to comment.