Skip to content

Commit 70402f8

Browse files
authored
generate title and message (removed copilot) (#424)
1 parent 512291d commit 70402f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension/conversation/node/githubPullRequestProviders.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class GitHubPullRequestProviders implements Disposable {
7474
this.titleAndDescriptionProvider = this.disposables.add(this.instantiationService.createInstance(GitHubPullRequestTitleAndDescriptionGenerator));
7575
}
7676
// This string "Copilot" needs to be in here. It's how we an tell which provider to use in the PR extension.
77-
this.disposables.add(this.gitHubExtensionApi.registerTitleAndDescriptionProvider(l10n.t('Generate with Copilot'), this.titleAndDescriptionProvider));
77+
this.disposables.add(this.gitHubExtensionApi.registerTitleAndDescriptionProvider(l10n.t('Generate Title and Message'), this.titleAndDescriptionProvider));
7878
this.logService.info('Successfully registered GitHub PR title and description provider.');
7979
} catch (e) {
8080
// Catch errors in case there's a breaking API change.

0 commit comments

Comments
 (0)