Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(core): Fix typo in fetchSource.ts

+1 -1
+1 -1
packages/core/src/internal/fetchSource.ts
··· 18 18 async function* streamBody(response: Response): AsyncIterableIterator<string> { 19 19 if (response.body![Symbol.asyncIterator]) { 20 20 for await (const chunk of response.body! as any) 21 - toString(chunk as ChunkData); 21 + yield toString(chunk as ChunkData); 22 22 } else { 23 23 const reader = response.body!.getReader(); 24 24 let result: ReadableStreamReadResult<ChunkData>;