Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(taskQueue): fix "immediate" rendering (#2630)
With taskQueue: "async" and "congestedAsync" `scheduleUpdate` calls `writeTask`, passing it the `dispatch` callback. `writeTask` calls the passed in dispatch callback in `process.nextTick()` Before this change, when the taskQueue: was set to `immediate`, the dispatch callback was never called. Resulting in no components rendering in the DOM.
- Loading branch information