Run prettier --write

This commit is contained in:
Justin Holguín
2024-01-31 22:09:37 +00:00
committed by GitHub
parent c0518321c3
commit 4dffb75625

View File

@@ -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
}