Removed unused logs

This commit is contained in:
Abdelilah El Aissaoui 2022-01-31 14:28:56 +01:00
parent fe718fdfec
commit 234e04192b

View File

@ -37,9 +37,6 @@ fun AppTab(
val lastError by errorManager.lastError.collectAsState() val lastError by errorManager.lastError.collectAsState()
var showError by remember { mutableStateOf(false) } var showError by remember { mutableStateOf(false) }
println("lastError $lastError")
if (lastError != null) { if (lastError != null) {
LaunchedEffect(lastError) { LaunchedEffect(lastError) {
showError = true showError = true
@ -93,7 +90,6 @@ fun AppTab(
val safeLastError = lastError val safeLastError = lastError
if (safeLastError != null) { if (safeLastError != null) {
println("safeLastError $safeLastError\nshowError $showError")
AnimatedVisibility( AnimatedVisibility(
visible = showError, visible = showError,
modifier = Modifier modifier = Modifier