Skip to content

Commit

Permalink
Release mgmt: increase page size to reduce loading bug on large scree…
Browse files Browse the repository at this point in the history
…ns (#1174)
  • Loading branch information
harshithmohan authored Jan 22, 2025
1 parent 9099e19 commit 7bcd582
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Utilities/ReleaseManagement/SeriesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ const SeriesList = (

const seriesQuery = useReleaseManagementSeries(
type,
{ ignoreVariations, collecting: onlyCollecting, onlyFinishedSeries, pageSize: 25 },
{ ignoreVariations, collecting: onlyCollecting, onlyFinishedSeries, pageSize: 50 },
);
const [series, seriesCount] = useFlattenListResult(seriesQuery.data);

Expand All @@ -168,7 +168,7 @@ const SeriesList = (
collecting: onlyCollecting,
includeDataFrom: ['AniDB'],
includeAbsolutePaths: true,
pageSize: 25,
pageSize: 50,
},
selectedSeries > 0,
);
Expand Down

0 comments on commit 7bcd582

Please sign in to comment.