diff options
author | Ivan Chen <ivan@thetaggid.com> | 2021-02-20 10:45:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 10:45:48 -0500 |
commit | d439b4320578ce8db414bf92aac25a04b167fd94 (patch) | |
tree | bf2dd671def6a3dbdd85b038ea10b64d54d148af /src/components/profile/Content.tsx | |
parent | a723baf9cc843599fb6539c873cedb6364647765 (diff) | |
parent | 064437a278cf368038c79816319e076d477397e4 (diff) |
Merge pull request #250 from TaggiD-Inc/tma655-taggs-bar-container-restyle
[BUGFIX] Taggs Bar: Restyled
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; |