diff --git a/packages/core/src/http/HttpAgentImpl.ts b/packages/core/src/http/HttpAgentImpl.ts index 5b6184207..a281d3c8b 100644 --- a/packages/core/src/http/HttpAgentImpl.ts +++ b/packages/core/src/http/HttpAgentImpl.ts @@ -500,6 +500,8 @@ export class HttpAgentImpl extends HttpAgent { */ _setCookiesFromResponse(agentResponse: HttpAgentResponse): void { if (agentResponse.headersRaw) { + // eslint-disable-next-line @typescript-eslint/ban-ts-comment + // @ts-ignore - This is due to old typescript version in docusaurus, will be fixed with docusaurus v3 update const receivedCookies = agentResponse.headersRaw.getSetCookie(); if (receivedCookies.length > 0) {