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
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
When triggered from initializers and thunks, reducers run "synchronously" now. This solves the problem in thunks/reducers if they dispatch actions or reduce state directly and expect getState() to return the reduced value which isn't always the case if reducers run asynchronously. With "synchronous" we mean that the execution of the thunk/initializer is suspended till the reducer has actually run (it's still queued and executed asynchronously)
Fix a race condition when using a viewModelScope to control the Bloc's lifecycle