Skip to content

Commit

Permalink
fix overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mozzius committed May 31, 2024
1 parent 1186701 commit 8868d50
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/components/dms/MessageItemEmbed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@ let MessageItemEmbed = ({
const t = useTheme()

return (
<View style={[a.my_xs, a.w_full, t.atoms.bg, a.rounded_md]}>
<PostEmbeds
embed={embed}
quoteTextStyle={[a.text_sm, t.atoms.text_contrast_high]}
/>
<View style={[a.my_xs, t.atoms.bg, a.rounded_md, {flexBasis: 0}]}>
<PostEmbeds embed={embed} />
</View>
)
}
Expand Down

0 comments on commit 8868d50

Please sign in to comment.