We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b545546 commit 6c22b6cCopy full SHA for 6c22b6c
packages/react-dom/src/server/ReactThreadIDAllocator.js
@@ -29,8 +29,8 @@ function growThreadCountAndReturnNextAvailable() {
29
newSize <= 0x10000,
30
'Maximum number of concurrent React renderers exceeded. ' +
31
'This can happen if you are not properly destroying the Readable provided by React. ' +
32
- 'Ensure that you call .destroy() on it if you no longer want to read from it.' +
33
- ', and did not read to the end. If you use .pipe() this should be automatic.',
+ 'Ensure that you call .destroy() on it if you no longer want to read from it, ' +
+ 'and did not read to the end. If you use .pipe() this should be automatic.',
34
);
35
let newArray = new Uint16Array(newSize);
36
newArray.set(oldArray);
0 commit comments