diff options
Diffstat (limited to 'src/components/profile/Content.tsx')
-rw-r--r-- | src/components/profile/Content.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/profile/Content.tsx b/src/components/profile/Content.tsx index 49cc2c35..206fd9e4 100644 --- a/src/components/profile/Content.tsx +++ b/src/components/profile/Content.tsx @@ -6,7 +6,7 @@ import {UserType} from '../../types'; import ProfileCutout from './ProfileCutout'; import ProfileHeader from './ProfileHeader'; import ProfileBody from './ProfileBody'; -import MomentsBar from './MomentsBar'; +import TaggsBar from '../taggs/TaggsBar'; import Feed from './Feed'; interface ContentProps { @@ -30,7 +30,7 @@ const Content: React.FC<ContentProps> = ({y, user}) => { <ProfileHeader /> </ProfileCutout> <ProfileBody {...{onLayout}} /> - <MomentsBar {...{y, profileBodyHeight}} /> + <TaggsBar {...{y, profileBodyHeight}} /> <Feed {...{user}} /> </Animated.ScrollView> ); |