Skip to content

Commit

Permalink
fix camelcase
Browse files Browse the repository at this point in the history
  • Loading branch information
hubertdeng123 committed May 31, 2023
1 parent 8fcb043 commit 8c0f37b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/githubEventHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export async function modifyProjectIssueProductArea(
) {
const productArea = getProductArea(productAreaLabelName);
const productAreaNodeIDMapping = await getAllProductAreaNodeIds(octokit);
const addIssueToprojectMutation = `mutation {
const addIssueToProjectMutation = `mutation {
updateProjectV2ItemFieldValue(
input: {
projectId: "${ISSUES_PROJECT_NODE_ID}"
Expand All @@ -100,7 +100,7 @@ export async function modifyProjectIssueProductArea(
}
}`;

await octokit.graphql(addIssueToprojectMutation);
await octokit.graphql(addIssueToProjectMutation);
}

export async function getProductAreaFromProjectField(
Expand Down

0 comments on commit 8c0f37b

Please sign in to comment.