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
@RouterObject var authRouter: NavigationRouter<AuthCoordinatorType>?
AuthCoordinator have been init and router stored but when I use authRouter, it is nil
protocol AuthCoordinatorType: AnyObject {}
final class AuthCoordinator: AuthCoordinatorType, NavigationCoordinatable {
lazy var routerStorable: AuthCoordinatorType = self
...
}
I checked on func func retrieve<T: Routable>() -> T? in class RouterStore
Stored router have type NavigationRouter<AuthCoordinator> can't cast to NavigationRouter<AuthCoordinatorType>
The text was updated successfully, but these errors were encountered:
@RouterObject var authRouter: NavigationRouter<AuthCoordinatorType>?
AuthCoordinator have been init and router stored but when I use authRouter, it is nil
I checked on func
func retrieve<T: Routable>() -> T?
in classRouterStore
Stored router have type
NavigationRouter<AuthCoordinator>
can't cast toNavigationRouter<AuthCoordinatorType>
The text was updated successfully, but these errors were encountered: