Skip to content

Commit

Permalink
fix: google sheets does not like null values
Browse files Browse the repository at this point in the history
  • Loading branch information
rutmanz committed Sep 11, 2024
1 parent a792d11 commit b092bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spreadsheet/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export async function updateSheet() {
row[columns.TotalHours] = max50Hours(hours.total)
row[columns.WeeklyHours] = weeklyHours[m.email] ?? 0
row[columns.Photo] = getMemberPhoto(m, true) ?? ''
row[columns.Certifications] = certMap[m.email]?.join(', ')
row[columns.Certifications] = certMap[m.email]?.join(', ') ?? ''
row[columns.IsPrimaryTeam] = m.is_primary_team
rows.push(row)

Expand Down

0 comments on commit b092bba

Please sign in to comment.