diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-20 12:08:59 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-20 12:08:59 -0500 |
commit | 8357cea9e510c97ba8816cb6850541509c5d764e (patch) | |
tree | 2078369aa878324088e62b998de76e0a5e487819 /src/components/profile/Content.tsx | |
parent | d671ce2a0dfc9d2ca181b5a21769c0cbd3be2fd3 (diff) | |
parent | f4d8c3058ac601b0652f28e4ac5e3a6360b7bbd7 (diff) |
Merge branch 'master' into tma644-edit-suggested
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r-- | src/components/profile/Content.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/profile/Content.tsx b/src/components/profile/Content.tsx index 86d40f1b..e75ae949 100644 --- a/src/components/profile/Content.tsx +++ b/src/components/profile/Content.tsx @@ -309,9 +309,7 @@ const Content: React.FC<ContentProps> = ({y, userXId, screenType}) => { isBlocked, }} /> - <View style={styles.taggsbarContainer}> - <TaggsBar {...{y, profileBodyHeight, userXId, screenType}} /> - </View> + <TaggsBar {...{y, profileBodyHeight, userXId, screenType}} /> <View style={styles.momentsContainer}> {userXId && moments.length === 0 && ( <View style={styles.plusIconContainer}> @@ -418,7 +416,6 @@ const styles = StyleSheet.create({ color: 'gray', marginVertical: '8%', }, - taggsbarContainer: {paddingHorizontal: 15}, }); export default Content; |