Skip to content

Commit 036e42f

Browse files
authored
Update src/api/error.ts
1 parent 6ced345 commit 036e42f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/error.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export function getErrorMessage(error: unknown): string {
1313
if (axiosError.code === 'ECONNABORTED') {
1414
return 'Connection timeout please check your internet connection or proxy settings.';
1515
} else if (axiosError.status === 407) {
16-
return 'Proxy authentication required. Please check your proxy settings.';
16+
return 'Proxy authentication required. Please update your proxy settings.';
1717
} else if (axiosError.status === 401) {
1818
vscode.commands.executeCommand('setContext', 'scalr.signed-in', false);
1919
}

0 commit comments

Comments
 (0)