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 4e3cb10 commit 60e4ca9Copy full SHA for 60e4ca9
1 file changed
src/tools/accessiblity-utils/report-fetcher.ts
@@ -51,7 +51,9 @@ export class AccessibilityReportFetcher {
51
for (let attempt = 1; attempt <= maxAttempts; attempt++) {
52
const reportResp = await apiClient.get({
53
url: reportUrl,
54
- headers: basicAuthHeader ? { Authorization: basicAuthHeader } : undefined,
+ headers: basicAuthHeader
55
+ ? { Authorization: basicAuthHeader }
56
+ : undefined,
57
});
58
const reportData: ReportResponse = reportResp.data;
59
if (!reportData.success) {
0 commit comments