From ca6dfd3f644759637f0c219b34d5cab2b3b3963a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 11:24:23 +0000 Subject: [PATCH] chore: auto-fix lint & formatting [skip ci] --- server/lib/formatters/review.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/lib/formatters/review.ts b/server/lib/formatters/review.ts index cae273a..60b1275 100644 --- a/server/lib/formatters/review.ts +++ b/server/lib/formatters/review.ts @@ -108,7 +108,10 @@ export function formatPullRequestReviewComment( }), url: comment.html_url, color: GITHUB_COLORS.pull_request_review_commented, - updateKey: repo && comment.id != null ? `pull_request_review_comment:${repo}:${comment.id}` : undefined, + updateKey: + repo && comment.id != null + ? `pull_request_review_comment:${repo}:${comment.id}` + : undefined, description: `${t("events.pr_review_comment.action_inline", { emoji: em("💬"), action: al })}\n\n> ${commentBody}${truncated ? "..." : ""}`, fields: fields.length > 0 ? fields : undefined, },