another issue (entirely separate from the above ex...
# kotlin-inject
v
another issue (entirely separate from the above examples, i'm playing with different stuff):
Copy code
@AppScope
@Component
abstract class AppComponent(
) : LoginCoordinates.LoginScreenComponent,
  ServiceComponent {
  companion object
}

interface ServiceComponent {
  val authService: AuthService
}

@Inject
@AppScope
class AuthService { ... }
errors with
Copy code
e: [ksp] /Volumes/repos/dwak/tripeated/composeApp/src/commonMain/kotlin/service/AuthService.kt:13: Cannot find component with scope: @AppScope to inject service.AuthService