diff --git a/docs/collections.md b/docs/collections.md index 474bbe7a1..0f714c308 100644 --- a/docs/collections.md +++ b/docs/collections.md @@ -137,7 +137,7 @@ export async function createCollection() { // Finally, `pageSize` and `pagination` is still on by default. Because // we don't want to paginate the already-grouped pages a second time, we'll // disable pagination. - pageSize: Infinity, + pageSize: 1, }; } --- @@ -179,8 +179,8 @@ export async function createCollection() { return allPokemon[params.index]; }, // Note: The default pageSize is fine because technically only one data object - // is ever returned per route. We set it to Infinity in this example for completeness. - pageSize: Infinity, + // is ever returned per route. We can set it to "1" in this example for completeness. + pageSize: 1, }; } ---