diff --git a/src/comment-pr.ts b/src/comment-pr.ts index 6e94a97..0c68d3d 100644 --- a/src/comment-pr.ts +++ b/src/comment-pr.ts @@ -74,8 +74,8 @@ async function findCommentByMarker( ) for await (const {data: comments} of commentsIterator) { - const existingComment = comments.find( - comment => comment.body?.includes(commentBodyIncludes) + const existingComment = comments.find(comment => + comment.body?.includes(commentBodyIncludes) ) if (existingComment) return existingComment.id }