diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-11 12:15:35 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-11 12:15:35 -0700 |
commit | a3e0a8432c096de463378756a82979f5d327b3a3 (patch) | |
tree | aa37be5d60b223c6aea18b637d2e3091b5343675 /extension/src/activation | |
parent | 84910d445f44f8de1f160ff81e06c4eaf9c17ee7 (diff) | |
download | sncontinue-a3e0a8432c096de463378756a82979f5d327b3a3.tar.gz sncontinue-a3e0a8432c096de463378756a82979f5d327b3a3.tar.bz2 sncontinue-a3e0a8432c096de463378756a82979f5d327b3a3.zip |
don't override error messages with a second one
Diffstat (limited to 'extension/src/activation')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index ff8d3158..f5d825c9 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -22,7 +22,7 @@ async function retryThenFail( if (retries > 0) { return await retryThenFail(fn, retries - 1); } - vscode.window.showErrorMessage( + vscode.window.showInformationMessage( "Failed to set up Continue extension. Please email nate@continue.dev and we'll get this fixed ASAP!" ); sendTelemetryEvent(TelemetryEvent.ExtensionSetupError, { |