removes logs from previous commit

This commit is contained in:
Vitor Pamplona 2024-08-06 17:14:22 -04:00
parent e88d1d0d00
commit c17e1f0e1f

View File

@ -99,7 +99,6 @@ fun DismissBackground(dismissState: SwipeToDismissBoxState) {
val haptic = LocalHapticFeedback.current val haptic = LocalHapticFeedback.current
LaunchedEffect(key1 = dismissState.currentValue > dismissState.targetValue) { LaunchedEffect(key1 = dismissState.currentValue > dismissState.targetValue) {
// doesn't run for the first time or when the list is updated. // doesn't run for the first time or when the list is updated.
println("AABBCC ${dismissState.progress}")
if (dismissState.progress > 0 && dismissState.progress < 1) { if (dismissState.progress > 0 && dismissState.progress < 1) {
haptic.performHapticFeedback(HapticFeedbackType.LongPress) haptic.performHapticFeedback(HapticFeedbackType.LongPress)
} }