You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently there is no check if there is really an active batch.
endBatch()// batchDepth is now -1// should do nothingstartBatch()// batchDepth is now 0 and nothing is batched// should be 1 and batching should happen.endBatch()// batchDepth is now -1 again// should be 0 and call processEffectNotifications
Will not trigger updates after the final end batch. It will trigger them on startBatch, what is not the expected result.
The text was updated successfully, but these errors were encountered:
Currently there is no check if there is really an active batch.
Will not trigger updates after the final end batch. It will trigger them on startBatch, what is not the expected result.
The text was updated successfully, but these errors were encountered: