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
There is a typo in implementation of didExitPreloadState computed var.
Instead of listening to didExitPreloadState method invocation it is listening to didEnterPreloadState:
public var didExitPreloadState: ControlEvent<Void> {
let source = self.methodInvoked(#selector(Base.didEnterPreloadState)).map { _ in return }
return ControlEvent(events: source)
}
The text was updated successfully, but these errors were encountered:
There is a typo in implementation of
didExitPreloadState
computed var.Instead of listening to
didExitPreloadState
method invocation it is listening todidEnterPreloadState
:The text was updated successfully, but these errors were encountered: