Fix incompatibilities with package.json (#8949)

This commit is contained in:
Tommaso Sciortino
2025-09-20 11:38:03 -07:00
committed by GitHub
parent 375b8522fc
commit 62b49ab14a
7 changed files with 112 additions and 29 deletions
+1 -1
View File
@@ -675,7 +675,7 @@ export class IdeClient {
return new Response(response.body as ReadableStream<unknown> | null, {
status: response.status,
statusText: response.statusText,
headers: response.headers,
headers: [...response.headers.entries()],
});
};
}