()
| 51 | </ErrorBoundary>, |
| 52 | { |
| 53 | async onAllReady() { |
| 54 | html = await readStream(stream).then((s: string) => { |
| 55 | // Workaround for https://github.com/facebook/react/pull/26228 |
| 56 | // (fixed in React 19, not backported to 18) |
| 57 | return s.replaceAll('\0', ''); |
| 58 | }); |
| 59 | resolve(); |
| 60 | }, |
| 61 | onError(error) { |
| 62 | reject(error); |
| 63 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…