Skip to content

Commit 512d53d

Browse files
committed
biome
1 parent 89763c1 commit 512d53d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/enhancers/github/githubEditComment.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export class GitHubEditCommentEnhancer implements CommentEnhancer<GitHubEditComm
2525

2626
// Only enhance textareas that are for editing issue/PR body
2727
const isIssueBodyEdit = textarea.closest('.react-issue-body')
28-
const isPRBodyEdit = textarea.id?.match(/^issue-\d+-body$/) || textarea.name === 'pull_request[body]'
28+
const isPRBodyEdit =
29+
textarea.id?.match(/^issue-\d+-body$/) || textarea.name === 'pull_request[body]'
2930

3031
if (!isIssueBodyEdit && !isPRBodyEdit) {
3132
return null

0 commit comments

Comments
 (0)