From d721904e66bcf5351fd6c0c35c1b7b7b511c8f83 Mon Sep 17 00:00:00 2001 From: bigbear <155267841+aso20455@users.noreply.github.com> Date: Fri, 29 Aug 2025 17:09:23 +0200 Subject: [PATCH] docs: fix incorrect default value in chunkArray JSDoc --- apps/website/src/utils/chunkArray.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/website/src/utils/chunkArray.ts b/apps/website/src/utils/chunkArray.ts index a77053f62..75b67f891 100644 --- a/apps/website/src/utils/chunkArray.ts +++ b/apps/website/src/utils/chunkArray.ts @@ -2,7 +2,7 @@ * This function takes an array and divides it into smaller arrays, * or "chunks", each containing a specified number of elements. * @param array The array to be split into chunks. - * @param size The size of each chunk. The default size is 10. + * @param size The size of each chunk. The default size is 15. * @returns An array containing smaller subarrays (chunks), each with a length defined by the size. */ export function chunkArray(array: any[], size = 15): any[] {