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 | 857303c78860806fb28205389cb6304cfd374111 (patch) | |
tree | 75f1293c04e0b395bf75d7b423371212e13f0bf7 /extension/src/activation/environmentSetup.ts | |
parent | 35f447b643f76afaeff81d75408393359ff9ef67 (diff) | |
download | sncontinue-857303c78860806fb28205389cb6304cfd374111.tar.gz sncontinue-857303c78860806fb28205389cb6304cfd374111.tar.bz2 sncontinue-857303c78860806fb28205389cb6304cfd374111.zip |
don't override error messages with a second one
Diffstat (limited to 'extension/src/activation/environmentSetup.ts')
-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, { |