Skip to content

Commit

Permalink
feat: improve username search in UsernameRequestsFragment
Browse files Browse the repository at this point in the history
  • Loading branch information
HashEngineering committed Nov 13, 2024
1 parent 6df16b5 commit 299d9bd
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -348,11 +348,15 @@ class UsernameRequestsFragment : Fragment(R.layout.fragment_username_requests) {
binding.filteredByTxt.text = appliedFilterNames.joinToString(", ")
}

/**
* Display the toast regarding the last vote
*/
private fun showVoteIndicator(
binding: FragmentUsernameRequestsBinding,
votes: List<String>,
usernames: List<String>,
status: Status
status: Status,
isQuickVoting: Boolean
) {
if (votes.isEmpty()) {
return
Expand Down

0 comments on commit 299d9bd

Please sign in to comment.