From 234e04192bd9bcc6f4140386b87ba1886ddc4d74 Mon Sep 17 00:00:00 2001 From: Abdelilah El Aissaoui Date: Mon, 31 Jan 2022 14:28:56 +0100 Subject: [PATCH] Removed unused logs --- src/main/kotlin/app/ui/AppTab.kt | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/kotlin/app/ui/AppTab.kt b/src/main/kotlin/app/ui/AppTab.kt index 3184ee1..7eb21eb 100644 --- a/src/main/kotlin/app/ui/AppTab.kt +++ b/src/main/kotlin/app/ui/AppTab.kt @@ -37,9 +37,6 @@ fun AppTab( val lastError by errorManager.lastError.collectAsState() var showError by remember { mutableStateOf(false) } - println("lastError $lastError") - - if (lastError != null) { LaunchedEffect(lastError) { showError = true @@ -93,7 +90,6 @@ fun AppTab( val safeLastError = lastError if (safeLastError != null) { - println("safeLastError $safeLastError\nshowError $showError") AnimatedVisibility( visible = showError, modifier = Modifier