Skip to content

Commit

Permalink
added const to assign variable (hackforla#6542)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramitaarora authored Apr 1, 2024
1 parent f8c7cb1 commit 32d3f8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ async function getAssignees(issueNum) {
issue_number: issueNum,
});
const assigneesData = results.data.assignees;
assigneesLogins = filterForAssigneesLogins(assigneesData);
const assigneesLogins = filterForAssigneesLogins(assigneesData);
return assigneesLogins
} catch (err) {
console.error(`Function failed to get assignees. Please refer to the error below: \n `, err);
Expand Down

0 comments on commit 32d3f8a

Please sign in to comment.