From 13cc6b3a71125266bcb5c81f1b8724a8a87ff1e6 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Thu, 13 Nov 2025 10:49:43 +0200 Subject: [PATCH] Avoid lint warning --- app/src/main/kotlin/com/tutpro/baresip/CallDetailsScreen.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/CallDetailsScreen.kt b/app/src/main/kotlin/com/tutpro/baresip/CallDetailsScreen.kt index a59953f6..ee54cba8 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/CallDetailsScreen.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/CallDetailsScreen.kt @@ -59,7 +59,7 @@ import java.text.DateFormat import java.util.GregorianCalendar fun NavGraphBuilder.callDetailsScreenRoute(navController: NavController, viewModel: ViewModel) { - composable("call_details") { backStackEntry -> + composable("call_details") { _ -> val callRow = remember { viewModel.consumeSelectedCallRow() } CallDetailsScreen(navController, callRow!!) }