Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-08 14:59:58 +03:00
parent 64ee30ba00
commit cbb691af31
3 changed files with 6 additions and 7 deletions

View file

@ -44,7 +44,7 @@ internal class DefaultRoutingComponent @AssistedInject constructor(
private fun getInitialRoute(): AppRoute = AppRoute.Initial
private fun child(route: AppRoute, context: ComponentContext): Child {
return childFactory.createChild(route, { childByContext(context) })
return childFactory.createChild(route) { childByContext(context) }
}
@AssistedFactory