MCPcopy Create free account
hub / github.com/caseywebdev/react-list / popActScope

Function popActScope

docs/index.js:1408–1414  ·  view source on GitHub ↗
(prevActQueue, prevActScopeDepth)

Source from the content-addressed store, hash-verified

1406 : errors[0];
1407 }
1408 function popActScope(prevActQueue, prevActScopeDepth) {
1409 prevActScopeDepth !== actScopeDepth - 1 &&
1410 console.error(
1411 "You seem to have overlapping act() calls, this is not supported. Be sure to await previous act() calls before making a new one. "
1412 );
1413 actScopeDepth = prevActScopeDepth;
1414 }
1415 function recursivelyFlushAsyncActWork(returnValue, resolve, reject) {
1416 var queue = ReactSharedInternals.actQueue;
1417 if (null !== queue)

Callers 1

index.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…