Skip to content

Commit

Permalink
fix: fixed variable naming error
Browse files Browse the repository at this point in the history
I hate JS.
  • Loading branch information
arctic-hen7 committed Jan 8, 2022
1 parent 3e9bcf6 commit ec9cc92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -90791,7 +90791,7 @@ const newIssueHandler = async (ctx) => {
const params = ctx.issue();
try {
// Get the body of the issue so that we can parse it
const { body } = await ctx.octokit.issues.get(issueParams);
const { body } = await ctx.octokit.issues.get(params);
// Get the labels out of that
let labels = getRequestedLabels(body);
// If we didn't find the appropriate formatting, we'll get `undefined`, in which case this issue wasn't created with Tribble and we should shut up
Expand Down
2 changes: 1 addition & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const newIssueHandler = async (ctx) => {
const params = ctx.issue();
try {
// Get the body of the issue so that we can parse it
const { body } = await ctx.octokit.issues.get(issueParams);
const { body } = await ctx.octokit.issues.get(params);
// Get the labels out of that
let labels = getRequestedLabels(body);
// If we didn't find the appropriate formatting, we'll get `undefined`, in which case this issue wasn't created with Tribble and we should shut up
Expand Down

0 comments on commit ec9cc92

Please sign in to comment.