Skip to content

Commit e1f7fb9

Browse files
committed
fix: styles
1 parent c2f449f commit e1f7fb9

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/common/atlas/apiClient.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,15 @@ export class ApiClient {
6464
if (!response.ok) {
6565
try {
6666
const text = await response.text();
67-
throw new ApiClientError(`Error calling Atlas API: [${response.status} ${response.statusText}] ${text}`, response);
67+
throw new ApiClientError(
68+
`Error calling Atlas API: [${response.status} ${response.statusText}] ${text}`,
69+
response
70+
);
6871
} catch {
69-
throw new ApiClientError(`Error calling Atlas API: ${response.status} ${response.statusText}`, response);
72+
throw new ApiClientError(
73+
`Error calling Atlas API: ${response.status} ${response.statusText}`,
74+
response
75+
);
7076
}
7177
}
7278
},

0 commit comments

Comments
 (0)