We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ced345 commit 036e42fCopy full SHA for 036e42f
src/api/error.ts
@@ -13,7 +13,7 @@ export function getErrorMessage(error: unknown): string {
13
if (axiosError.code === 'ECONNABORTED') {
14
return 'Connection timeout please check your internet connection or proxy settings.';
15
} else if (axiosError.status === 407) {
16
- return 'Proxy authentication required. Please check your proxy settings.';
+ return 'Proxy authentication required. Please update your proxy settings.';
17
} else if (axiosError.status === 401) {
18
vscode.commands.executeCommand('setContext', 'scalr.signed-in', false);
19
}
0 commit comments