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`); }