Rmoved explicit type argument

This commit is contained in:
Juha Heinanen
2025-07-18 21:57:45 +03:00
parent 8ec11fb851
commit acf29b288b

View File

@ -82,7 +82,7 @@ private fun CallsScreen(navController: NavController, viewModel: ViewModel, aor:
val account = Account.ofAor(aor)!!
val callHistory: MutableState<List<CallRow>> = remember { mutableStateOf(emptyList<CallRow>()) }
val callHistory: MutableState<List<CallRow>> = remember { mutableStateOf(emptyList()) }
var isHistoryLoaded by remember { mutableStateOf(false) }
LaunchedEffect(aor) {