Skip to content

Commit

Permalink
Update src/handlers/issue-deduplication.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 authored Oct 3, 2024
1 parent 4ecd854 commit 3a360b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/issue-deduplication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ async function handleSimilarIssuesComment(context: Context, payload: IssuePayloa
})
.join("\n");
const footnoteLinks = [...Array(finalIdx).keys()].map((i) => `[^0${i + 1}^]`).join("");
const body = "\n###### Similar " + footnoteLinks + ":\n\n" + commentBody;
const body = "\n###### Similar " + footnoteLinks + "\n\n" + commentBody;

// Remove the existing foot note
const existingBody = context.payload.issue.body;
Expand Down

0 comments on commit 3a360b9

Please sign in to comment.