()
| 79 | } |
| 80 | |
| 81 | async function updateCommitTitle(): Promise<void> { |
| 82 | if (!needsSubmission()) { |
| 83 | return; |
| 84 | } |
| 85 | |
| 86 | const field = $(commitTitleFieldSelector); |
| 87 | setReactInputValue(field, createCommitTitle()); |
| 88 | } |
| 89 | |
| 90 | function disableSubmission(): void { |
| 91 | features.unload(import.meta.url); |
nothing calls this directly
no test coverage detected