We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef73e9e commit dded130Copy full SHA for dded130
Sources/CoreTypes/Store.swift
@@ -26,7 +26,7 @@ open class Store<ObservableProperty: ObservablePropertyType> where ObservablePro
26
27
public func dispatch(_ actions: Action...) {
28
actions.forEach { action in
29
- middleware.transform({ self.observable.value }, self.dispatch, action).forEach { action in
+ middleware.transform({ self.observable.value }, dispatch, action).forEach { action in
30
observable.value = reducer.transform(action, observable.value)
31
}
32
0 commit comments