diff options
author | Ivan Chen <ivan@tagg.id> | 2021-05-04 13:31:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 13:31:17 -0400 |
commit | 1441ef007549f24a292317f1e67c0de63cacbd2b (patch) | |
tree | 1b1fe4a21f257c468c321d49804f124c98a6e6b6 /src/components/moments/MomentPostHeader.tsx | |
parent | 5a8d92bcd869ada1079bc36b6598c899a8a9246d (diff) | |
parent | 64dedc2bc0c65fae604ba771ae4c17d1927ff1c2 (diff) |
Merge pull request #392 from IvanIFChen/tma791-remove-profile-photo-requirement
[TMA-791] Removed profile photo requirement
Diffstat (limited to 'src/components/moments/MomentPostHeader.tsx')
-rw-r--r-- | src/components/moments/MomentPostHeader.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/moments/MomentPostHeader.tsx b/src/components/moments/MomentPostHeader.tsx index 8cf509ab..20d9150a 100644 --- a/src/components/moments/MomentPostHeader.tsx +++ b/src/components/moments/MomentPostHeader.tsx @@ -10,7 +10,7 @@ import {MomentMoreInfoDrawer} from '../profile'; import {loadUserMoments} from '../../store/actions'; import {useDispatch, useSelector, useStore} from 'react-redux'; import {ScreenType} from '../../types'; -import Avatar from '../profile/Avatar'; +import TaggAvatar from '../profile/TaggAvatar'; import {useNavigation} from '@react-navigation/native'; import {RootState} from '../../store/rootReducer'; import {fetchUserX, userXInStore} from '../../utils'; @@ -54,7 +54,7 @@ const MomentPostHeader: React.FC<MomentPostHeaderProps> = ({ return ( <View style={[styles.container, style]}> <TouchableOpacity onPress={navigateToProfile} style={styles.header}> - <Avatar + <TaggAvatar style={styles.avatar} userXId={userXId} screenType={screenType} |