Fix group member review avatar and "other groups in common" copy. (#4813)

- Fixes `ReviewBannerView` erroneously using the note to self icon instead of the current user's profile photo.
- Fixes the "other groups in common" copy, which was missing the word "other".
This commit is contained in:
Jeffrey Starke
2025-04-07 16:00:09 -04:00
committed by Michelle Tang
parent 1e0e165eaf
commit 2608e9165c
2 changed files with 4 additions and 4 deletions

View File

@@ -67,8 +67,8 @@ public class ReviewBannerView extends FrameLayout {
}
public void setBannerRecipients(@NonNull Recipient target, @NonNull Recipient dupe) {
binding.bannerTopLeftAvatar.setAvatar(target);
binding.bannerBottomRightAvatar.setAvatar(dupe);
binding.bannerTopLeftAvatar.setAvatarUsingProfile(target);
binding.bannerBottomRightAvatar.setAvatarUsingProfile(dupe);
binding.bannerIcon.setVisibility(GONE);
binding.bannerTopLeftAvatar.setVisibility(VISIBLE);