Fix block dialog overflow issues

This commit is contained in:
Samuel Newman
2026-06-12 12:08:03 +03:00
parent ec695a42c5
commit 7d765daeeb
+5 -5
View File
@@ -244,7 +244,8 @@ function BlockDialogInner({
scrollIndicatorInsets={{top: headerHeight, bottom: footerHeight}} scrollIndicatorInsets={{top: headerHeight, bottom: footerHeight}}
onEndReached={() => void onEndReached()} onEndReached={() => void onEndReached()}
onEndReachedThreshold={0.5} onEndReachedThreshold={0.5}
style={[web([{maxWidth: 420}])]} style={[web([{height: '100vh', maxHeight: 600}])]}
webInnerStyle={[{maxWidth: 420}]}
/> />
) )
} }
@@ -340,11 +341,10 @@ function MutualGroupChat({
a.py_sm, a.py_sm,
native(a.px_2xl), native(a.px_2xl),
]}> ]}>
<View style={[a.flex_row, a.align_center, a.gap_sm]}> <View style={[a.flex_1, a.flex_row, a.align_center, a.gap_sm]}>
<AvatarBubbles profiles={convo.members} size={40} /> <AvatarBubbles profiles={convo.members} size={40} />
<View> <View style={[a.flex_1]}>
<Text <Text style={[a.text_md, a.font_semi_bold]} emoji numberOfLines={1}>
style={[a.text_md, a.font_semi_bold, a.leading_snug, t.atoms.text]}>
{convo.details.name} {convo.details.name}
</Text> </Text>
{isViewerOwner ? ( {isViewerOwner ? (