Skip to content

Commit

Permalink
Add missing @InjectedParam annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
matejsemancik committed Dec 5, 2024
1 parent 9244cc7 commit b2123eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import org.koin.core.annotation.InjectedParam

@Factory
internal class SecondComponent(
componentContext: AppComponentContext,
@InjectedParam componentContext: AppComponentContext,
@InjectedParam override val navigation: SecondScreenNavigation,
) : ScreenComponent<SecondViewState, Nothing, SecondScreenNavigation>(
componentContext = componentContext,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import org.koin.core.annotation.InjectedParam

@Factory
internal class ThirdComponent(
componentContext: AppComponentContext,
@InjectedParam componentContext: AppComponentContext,
@InjectedParam args: ThirdScreenArgs,
@InjectedParam override val navigation: ThirdScreenNavigation,
) : ScreenComponent<ThirdViewState, Nothing, ThirdScreenNavigation>(
Expand Down

0 comments on commit b2123eb

Please sign in to comment.