From d331c6e055005339b706d2516efeabdc43783733 Mon Sep 17 00:00:00 2001 From: martinshoob Date: Sat, 31 May 2025 16:26:38 +0200 Subject: [PATCH] constant fix --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 911d7ba..7380905 100644 --- a/app.js +++ b/app.js @@ -203,7 +203,7 @@ async function main() { // Update column B with group names if (groupNames.length > 0) { - const columnBRange = `B2:B${groupNames.length + 1}`; // B2 to B(2+count-1) + const columnBRange = `B3:B${groupNames.length + 1}`; // B2 to B(2+count-1) await updateSheetData(SPREADSHEET_ID, columnBRange, groupNames); console.log(`Updated column B with ${groupNames.length} group names`); }