From 4dffb75625b238d79de54b1a5bdf2af033fa631a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Justin=20Holgu=C3=ADn?= Date: Wed, 31 Jan 2024 22:09:37 +0000 Subject: [PATCH] Run prettier --write --- src/comment-pr.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }