Skip to content

Commit

Permalink
Force google sheets to insert instead of overwrite when adding a row
Browse files Browse the repository at this point in the history
  • Loading branch information
powellkerry committed Mar 18, 2024
1 parent 9ea2c4c commit 920aacf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/google/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ module.exports = function (logger) {
Summary: summaryDescription,
MessageLink: messageLink,
GithubIssueId: githubIssueId
});
}, { insert: true});
return;
};

Expand All @@ -346,7 +346,7 @@ module.exports = function (logger) {
await sheet.addRow({
TicketId: `msgId:${analytic.ticketId}`,
Helpful: analytic.value
})
}, { insert: true})
};

/**
Expand Down

0 comments on commit 920aacf

Please sign in to comment.