From 348845fb6e6361a4b4319506886ef2952f32c6a7 Mon Sep 17 00:00:00 2001 From: Kallesh B S Date: Tue, 11 Mar 2025 15:53:25 +0530 Subject: [PATCH] crows --- src/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);