refactor(ping-feature): clean up imports, simplify UI state handling, and remove redundant variables

Simplified imports for better readability, addressed unnecessary null check for `uiState.errorMessage`, and removed an unused `CoroutineScope` variable in `MainApp`. Improved code clarity and maintainability.
This commit is contained in:
2026-01-19 16:55:56 +01:00
parent 12810ce82d
commit d03b888676
4 changed files with 412 additions and 391 deletions
@@ -36,7 +36,7 @@ fun MainApp() {
val authApiClient = koinInject<AuthApiClient>()
// Delta-Sync blueprint: resolve the Ping feature view model via Koin.
val pingViewModel: PingViewModel = koinViewModel()
rememberCoroutineScope()
// scope removed (unused)
// Handle PKCE callback on an app load (web)
LaunchedEffect(Unit) {