From c17e1f0e1fe1f34c9db132d4cc4bfd2b822b4564 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Tue, 6 Aug 2024 17:14:22 -0400 Subject: [PATCH] removes logs from previous commit --- .../com/vitorpamplona/amethyst/ui/components/SwipeToDelete.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/SwipeToDelete.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/SwipeToDelete.kt index ef69e4800a..e3ce26a641 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/SwipeToDelete.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/components/SwipeToDelete.kt @@ -99,7 +99,6 @@ fun DismissBackground(dismissState: SwipeToDismissBoxState) { val haptic = LocalHapticFeedback.current LaunchedEffect(key1 = dismissState.currentValue > dismissState.targetValue) { // doesn't run for the first time or when the list is updated. - println("AABBCC ${dismissState.progress}") if (dismissState.progress > 0 && dismissState.progress < 1) { haptic.performHapticFeedback(HapticFeedbackType.LongPress) }