Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
fix: new line for docs
Browse files Browse the repository at this point in the history
missed return
  • Loading branch information
Keyrxng committed Oct 22, 2023
1 parent 0836161 commit bd99432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/comment/handlers/review.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export async function review(body: string) {

const readme = await findFileInRepo(context, "readme.md");
const contributing = await findFileInRepo(context, "contributing.md");
const docLinks = `### Helpful links - [Readme](${readme?.data.html_url})\n- [Contributing](${contributing?.data.html_url})`;
const docLinks = `### Helpful links\n - [Readme](${readme?.data.html_url})\n- [Contributing](${contributing?.data.html_url})`;

const actionedResponse = await reviewGPT(issue.number, chatHistory, issue.assignees[0].login, docLinks);

Expand Down

0 comments on commit bd99432

Please sign in to comment.