From fa7425e114e9c2cf21ef9a9050cc9707b92a6b13 Mon Sep 17 00:00:00 2001 From: KotlinGeekDev Date: Thu, 20 Mar 2025 17:30:01 +0100 Subject: [PATCH] Remove unnecessary delay call. --- .../ui/screen/loggedIn/profile/header/FollowSetsActionMenu.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/profile/header/FollowSetsActionMenu.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/profile/header/FollowSetsActionMenu.kt index 5e4438872..85455d8c0 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/profile/header/FollowSetsActionMenu.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/profile/header/FollowSetsActionMenu.kt @@ -65,7 +65,6 @@ import com.vitorpamplona.amethyst.ui.theme.ButtonBorder import com.vitorpamplona.amethyst.ui.theme.StdHorzSpacer import com.vitorpamplona.amethyst.ui.theme.StdVertSpacer import com.vitorpamplona.amethyst.ui.theme.ZeroPadding -import kotlinx.coroutines.delay import kotlinx.coroutines.launch @Composable @@ -118,7 +117,6 @@ fun FollowSetsActionMenu( expanded = isMenuOpen, onDismissRequest = { uiScope.launch { - delay(100L) setMenuValue(false) } },