Fix invite card avatar pile not reflecting member count (#10891)

This commit is contained in:
Samuel Newman
2026-06-13 00:57:31 +03:00
committed by GitHub
parent 1f90a4dfd9
commit 714b1e205d
5 changed files with 25 additions and 20 deletions
@@ -315,10 +315,8 @@ function GroupChatJoinDialogContent({code}: {code?: string}) {
<>
<View style={[a.w_full, a.py_lg, a.align_center]}>
<AvatarBubbles
profiles={[
joinLinkPreview.owner,
...Array(joinLinkPreview.memberCount - 1).fill(undefined),
]}
profiles={[joinLinkPreview.owner]}
count={joinLinkPreview.memberCount}
self
size={135}
/>