diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-15 12:07:51 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-15 12:07:51 -0700 |
commit | cb518073b0e3711a946282864c150edff35db53a (patch) | |
tree | 652fa8f8b7b7a894490fb6e9a657c820a08afbe9 /extension | |
parent | 6de892f12959a43c74372f1eba40ec2f53b8c537 (diff) | |
download | sncontinue-cb518073b0e3711a946282864c150edff35db53a.tar.gz sncontinue-cb518073b0e3711a946282864c150edff35db53a.tar.bz2 sncontinue-cb518073b0e3711a946282864c150edff35db53a.zip |
proxy server running locally
Diffstat (limited to 'extension')
-rw-r--r-- | extension/package.json | 2 | ||||
-rw-r--r-- | extension/src/continueIdeClient.ts | 12 |
2 files changed, 6 insertions, 8 deletions
diff --git a/extension/package.json b/extension/package.json index 13cc92a2..9ff7165c 100644 --- a/extension/package.json +++ b/extension/package.json @@ -96,7 +96,7 @@ { "type": "webview", "id": "continue.continueGUIView", - "name": "Continue GUI", + "name": ")", "visibility": "visible" } ] diff --git a/extension/src/continueIdeClient.ts b/extension/src/continueIdeClient.ts index c879c682..ef9a91c8 100644 --- a/extension/src/continueIdeClient.ts +++ b/extension/src/continueIdeClient.ts @@ -192,15 +192,13 @@ class IdeProtocolClient { async getUserSecret(key: string) { // Check if secret already exists in VS Code settings (global) let secret = vscode.workspace.getConfiguration("continue").get(key); - if (secret && secret !== "") return secret; + if (typeof secret !== "undefined") return secret; // If not, ask user for secret - while (typeof secret === "undefined" || secret === "") { - secret = await vscode.window.showInputBox({ - prompt: `Enter secret for ${key}. You can edit this later in the Continue VS Code settings.`, - password: true, - }); - } + secret = await vscode.window.showInputBox({ + prompt: `Enter secret for ${key}, OR press enter to try for free. You can edit this later in the Continue VS Code settings.`, + password: true, + }); // Add secret to VS Code settings vscode.workspace |