We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a1f75 commit ad7a657Copy full SHA for ad7a657
src/common/atlas/apiClient.ts
@@ -64,9 +64,9 @@ export class ApiClient {
64
if (!response.ok) {
65
try {
66
const text = await response.text();
67
- throw new ApiClientError(`Error calling Atlas API: [${response.statusText}] ${text}`, response);
+ throw new ApiClientError(`Error calling Atlas API: [${response.status} ${response.statusText}] ${text}`, response);
68
} catch {
69
- throw new ApiClientError(`Error calling Atlas API: ${response.statusText}`, response);
+ throw new ApiClientError(`Error calling Atlas API: ${response.status} ${response.statusText}`, response);
70
}
71
72
},
0 commit comments