Skip to content

Commit 417aa7d

Browse files
authored
fix: build error due to oversized response (#4570) (#4572)
1 parent 48864a1 commit 417aa7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/[entityListType]/[...params].tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export const getStaticPaths: GetStaticPaths<PageUrl> = async () => {
182182
const azulCatalogResponse = await fetchCatalog();
183183
const catalogs = getCatalogs(azulCatalogResponse, defaultCatalog);
184184
// Define the list params.
185-
const listParams = { size: "100" };
185+
const listParams = { size: "75" };
186186
// Fetch entities for each catalog and process the paths.
187187
for (const catalog of catalogs) {
188188
const entitiesResponse = await getEntities(

0 commit comments

Comments
 (0)