aboutsummaryrefslogtreecommitdiff
path: root/src/components/profile/Content.tsx
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-02-20 12:24:33 -0500
committerIvan Chen <ivan@tagg.id>2021-02-20 12:24:33 -0500
commit82fc3c7ded1022a31cd532d469457d77f9214cc8 (patch)
tree08aeb9ce90be7ca69b56923bab6c34871b3a793a /src/components/profile/Content.tsx
parent9db520bf91b9c157ab2c9d2d3696348e031698d2 (diff)
parent4b8130932b943afe9fdf63c611f1897622ab795e (diff)
Merge branch 'master' into tma258-sp-pagination-2
# Conflicts: # src/constants/api.ts # src/screens/suggestedPeople/SuggestedPeopleScreen.tsx # src/services/SuggestedPeopleService.ts
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r--src/components/profile/Content.tsx5
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;