mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

change maxWidth -> width to fix GIFs in DMs (#4717)

Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com>

authored by samuel.fm

Samuel Newman and committed by
GitHub
dc3c81c4 04cfd066

+2 -5
+2 -5
src/view/com/util/post-embeds/GifEmbed.tsx
··· 124 124 ) 125 125 126 126 return ( 127 - <View 128 - style={[a.rounded_sm, a.overflow_hidden, a.mt_sm, {maxWidth: '100%'}]}> 127 + <View style={[a.rounded_sm, a.overflow_hidden, a.mt_sm, {width: '100%'}]}> 129 128 <View 130 129 style={[ 131 130 a.rounded_sm, 132 131 a.overflow_hidden, 133 - { 134 - aspectRatio: params.dimensions!.width / params.dimensions!.height, 135 - }, 132 + {aspectRatio: params.dimensions!.width / params.dimensions!.height}, 136 133 ]}> 137 134 <PlaybackControls 138 135 onPress={onPress}