Skip to content

Commit c415d43

Browse files
committed
Unnecessary _
1 parent e2d88f7 commit c415d43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/enhancers/github/GitHubPrAppendEnhancer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ export class GitHubPrAppendEnhancer implements CommentEnhancer<GitHubPrAppendSpo
2121
}
2222

2323
tryToEnhance(
24-
_textarea: HTMLTextAreaElement,
24+
textarea: HTMLTextAreaElement,
2525
location: StrippedLocation,
2626
): GitHubPrAppendSpot | null {
2727
// Only handle github.com domains TODO: identify GitHub Enterprise somehow
28-
if (location.host !== 'github.com' || _textarea.id !== 'new_comment_field') {
28+
if (location.host !== 'github.com' || textarea.id !== 'new_comment_field') {
2929
return null
3030
}
3131

0 commit comments

Comments
 (0)