diff --git a/src/auth/auth.service.ts b/src/auth/auth.service.ts index 5958124..d6fe172 100644 --- a/src/auth/auth.service.ts +++ b/src/auth/auth.service.ts @@ -68,7 +68,7 @@ export class AuthService { do { rowsBatch = await cursor.getRows(100); // Fetch 100 rows at a time - crows = rows.concat(rowsBatch); // Append fetched rows to the main array + crows = crows.concat(rowsBatch); // Append fetched rows to the main array } while (rowsBatch.length > 0); console.log('Rows fetched:', crows);