Skip to content

Commit a244941

Browse files
Updates wording on the cross-repository prompt
1 parent 2ccaefa commit a244941

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/quickpicks/remoteProviderPicker.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,8 @@ export class CopyOrOpenRemoteCommandQuickPickItem extends CommandQuickPickItem {
137137
const integrationName = providersMetadata[integrationId].name;
138138
const connectItem = createQuickPickItemOfT(
139139
{
140-
label: `Connect a ${integrationName} Integration...`,
141-
detail: `Connect a ${integrationName} integration to be able to create cross-fork pull requests`,
140+
label: `Connect to ${integrationName}...`,
141+
detail: `Connect an integration with ${integrationName} to create cross-repository pull requests`,
142142
picked: true,
143143
},
144144
true,
@@ -155,8 +155,8 @@ export class CopyOrOpenRemoteCommandQuickPickItem extends CommandQuickPickItem {
155155
);
156156
});
157157
quickpick.ignoreFocusOut = getQuickPickIgnoreFocusOut();
158-
quickpick.title = `Connect a ${integrationName} Integration`;
159-
quickpick.placeholder = `Connect a ${integrationName} integration to be able to create cross-fork pull requests`;
158+
quickpick.title = `Connect ${integrationName} Integration`;
159+
quickpick.placeholder = `Requires an integration with ${integrationName} to create cross-repository pull requests`;
160160
quickpick.matchOnDetail = true;
161161
quickpick.items = [connectItem, cancelItem];
162162
quickpick.show();

0 commit comments

Comments
 (0)