Skip to content

Commit 8c01d08

Browse files
committed
stop interfering with the real useId
1 parent 189cdb8 commit 8c01d08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/chunked.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ function handleError(error, vnode, renderChild) {
5050
if (!vnode) return;
5151

5252
let root = vnode;
53-
while (root !== null && !root[MASK] && root[PARENT] !== null) {
53+
while (root !== null && !root.mask && root[PARENT] !== null) {
5454
root = root[PARENT];
5555
}
5656

57-
const mask = root[MASK] || (root[MASK] = [0, 0]);
57+
const mask = root.mask || (root.mask = [0, 0]);
5858
const id = 'P' + mask[0] + '-' + mask[1]++ + this.suspended.length;
5959

6060
const race = new Deferred();

0 commit comments

Comments
 (0)