Skip to content

Commit

Permalink
Ensure progress indicator is removed when a user is unblocked (#2554)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartinesp authored Mar 15, 2024
1 parent 67d7905 commit 694f551
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 694f551

Please sign in to comment.