Skip to content

Commit

Permalink
CodeQL fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dcotelessa committed Oct 21, 2024
1 parent 53e77b6 commit ad55ee6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions google-apps-scripts/wins-form-responses/Code.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function main() {
return JSON.stringify(arr1) === JSON.stringify(arr2);
}

const createPrResponse = ghrequests.createPR();
ghrequests.createPR();
}

/************************************************** TRIGGER("On Form Submit") 2 SECTION ********************************************************************/
Expand Down Expand Up @@ -305,7 +305,7 @@ function compareResponsesAndReview() {

//Gets the values
for (let i = 0; i <= 10; i++) {
values = reviewInfoSplit[i].split(" : ");
const values = reviewInfoSplit[i].split(" : ");
let value = values[1];
if (value !== undefined) {
value = value.trim();
Expand Down

0 comments on commit ad55ee6

Please sign in to comment.