diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/Icons.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/Icons.kt index 0233622a3..0ebd0d557 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/Icons.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/Icons.kt @@ -74,7 +74,6 @@ import com.vitorpamplona.amethyst.ui.theme.Size30Modifier import com.vitorpamplona.amethyst.ui.theme.grayText import com.vitorpamplona.amethyst.ui.theme.placeholderText import com.vitorpamplona.amethyst.ui.theme.subtleButton -import kotlin.time.measureTimedValue @Composable fun AmethystIcon(iconSize: Dp) { @@ -88,16 +87,12 @@ fun AmethystIcon(iconSize: Dp) { @Composable fun FollowingIcon(iconSize: Dp) { - val (value, elapsed) = - measureTimedValue { - Icon( - imageVector = Following, - contentDescription = stringResource(id = R.string.following), - modifier = Modifier.size(iconSize), - tint = Color.Unspecified, - ) - } - println("FollowingIcon $elapsed") + Icon( + imageVector = Following, + contentDescription = stringResource(id = R.string.following), + modifier = Modifier.size(iconSize), + tint = Color.Unspecified, + ) } @Composable