Skip to content

Commit

Permalink
fix(ProfileFragment): max out number of profile roles to 4
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasGGamerM committed Sep 25, 2023
1 parent d7ab019 commit 8a3df36
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
import me.grishka.appkit.views.UsableRecyclerView;

public class ProfileAboutFragment extends Fragment implements WindowInsetsAwareFragment{
static final int MAX_FIELDS=Integer.MAX_VALUE;
static final int MAX_FIELDS=4;

public UsableRecyclerView list;
private List<AccountField> fields=Collections.emptyList();
Expand Down

0 comments on commit 8a3df36

Please sign in to comment.