diff --git a/features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/blockedusers/BlockedUsersView.kt b/features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/blockedusers/BlockedUsersView.kt index 6e7726cfab..190950e645 100644 --- a/features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/blockedusers/BlockedUsersView.kt +++ b/features/preferences/impl/src/main/kotlin/io/element/android/features/preferences/impl/blockedusers/BlockedUsersView.kt @@ -100,6 +100,11 @@ fun BlockedUsersView( } } } + is AsyncAction.Success -> { + LaunchedEffect(state.unblockUserAction) { + asyncIndicatorState.clear() + } + } is AsyncAction.Confirming -> { ConfirmationDialog( title = stringResource(R.string.screen_blocked_users_unblock_alert_title),