Skip to content

Commit b82ffaa

Browse files
committed
fix: reduce amount of evaluations per API page even further
to prevent timeouts
1 parent 0da27cc commit b82ffaa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/admin/apisearcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const API_DEFAULT_FILTERS_SCALE_TEAMS = {
4949
'filter[future]': 'false',
5050
'range[filled_at]': `2024-01-01T00:00:00,${new Date().toISOString()}`, // filled_at was only added later
5151
'sort': '-filled_at',
52-
'page[size]': '10', // ScaleTeams API endpoint is very slow so we limit the amount of items per page to avoid timeouts
52+
'page[size]': '8', // ScaleTeams API endpoint is very slow so we limit the amount of items per page to avoid timeouts
5353
};
5454

5555
// Filters applied to events

0 commit comments

Comments
 (0)