Skip to content

Commit e15545c

Browse files
committed
💄
1 parent 1d0985f commit e15545c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/gitpod/src/remoteConnector.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,8 +517,8 @@ export default class RemoteConnector extends Disposable {
517517
const params: SSHConnectionParams = JSON.parse(uri.query);
518518
const gitpodHost = vscode.workspace.getConfiguration('gitpod').get<string>('host')!;
519519
if (new URL(params.gitpodHost).host !== new URL(gitpodHost).host) {
520-
const yes = 'yes';
521-
const cancel = 'cancel';
520+
const yes = 'Yes';
521+
const cancel = 'Cancel';
522522
const action = await vscode.window.showInformationMessage(`Trying to connect to a remote workspace in a different Gitpod Host. Continue and update 'gitpod.host' setting to '${params.gitpodHost}'?`, yes, cancel);
523523
if (action === cancel) {
524524
return;

0 commit comments

Comments
 (0)