constant fix

This commit is contained in:
martinshoob 2025-05-31 16:26:38 +02:00
parent f648a804a6
commit d331c6e055

2
app.js
View file

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