Skip to content

Commit b2f2ab3

Browse files
committed
Stops showing an error when user refuses to connect an integration
(#4142, #4143)
1 parent a244941 commit b2f2ab3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/quickpicks/remoteProviderPicker.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,7 @@ export class CopyOrOpenRemoteCommandQuickPickItem extends CommandQuickPickItem {
8282
const connected =
8383
integrationId && (await this.showIntegrationConnectionPicker(integrationId, 'view'));
8484
if (!connected) {
85-
throw new RequiresIntegrationError(
86-
'Cross-fork pull request URLs are not supported by this provider',
87-
);
85+
return undefined;
8886
}
8987
}
9088
} else if (

0 commit comments

Comments
 (0)