From 310a93ef29419c437e4452e178effb96b1b18240 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 25 May 2023 16:24:16 -0400 Subject: [PATCH] removes logs --- .../com/vitorpamplona/amethyst/ui/navigation/AppBottomBar.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/navigation/AppBottomBar.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/navigation/AppBottomBar.kt index 8dd993fb0..50fe73049 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/navigation/AppBottomBar.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/navigation/AppBottomBar.kt @@ -123,7 +123,6 @@ private fun RowScope.HasNewItemsIcon( LaunchedEffect(key1 = notifState, key2 = accountState) { scope.launch(Dispatchers.IO) { val newHasNewItems = route.hasNewItems(account, notif, emptySet()) - println("Notification Change ${route.route} $hasNewItems -> $newHasNewItems") if (newHasNewItems != hasNewItems) { hasNewItems = newHasNewItems } @@ -134,7 +133,6 @@ private fun RowScope.HasNewItemsIcon( scope.launch(Dispatchers.IO) { LocalCache.live.newEventBundles.collect { val newHasNewItems = route.hasNewItems(account, notif, it) - println("Notification From Base ${route.route} $hasNewItems -> $newHasNewItems") if (newHasNewItems != hasNewItems) { hasNewItems = newHasNewItems }