Skip to content
This repository was archived by the owner on Jan 24, 2023. It is now read-only.

Commit bba6abe

Browse files
committed
Fix ESLint issues
1 parent 2611e60 commit bba6abe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async function copyPrDescription() {
1313
if (!match) {
1414
warn('failed to find match for repo and PR number in URL');
1515
return;
16-
};
16+
}
1717
const repo = match.groups['repo'];
1818
const prNumber = match.groups['pr_number'];
1919

@@ -40,14 +40,14 @@ async function copyPrDescription() {
4040
if (!titleFields.length) {
4141
warn('failed to find merge commit title field');
4242
return;
43-
};
43+
}
4444

4545
// When using auto-merge, GitHub has two text fields with the same ID.
4646
const messageFields = document.querySelectorAll('[id=merge_message_field]');
4747
if (!messageFields.length) {
4848
warn('failed to find merge commit body field');
4949
return;
50-
};
50+
}
5151

5252
const commitTitle = `${prMetadata.title} (#${prNumber})`;
5353

0 commit comments

Comments
 (0)