diff options
| author | Ivan Chen <ivan@tagg.id> | 2021-05-07 16:01:47 -0400 |
|---|---|---|
| committer | Ivan Chen <ivan@tagg.id> | 2021-05-07 16:01:47 -0400 |
| commit | 76bc8c5825f39257be6e7648d12b858f1e805569 (patch) | |
| tree | b94d9570439ebfa42e6664144f124abe5d4113e3 /src/components/search/SearchResultCell.tsx | |
| parent | 65c7411f4609edac3d4d5f23fc031ed274fc5872 (diff) | |
| parent | c9d32e68fbb9d1bc175722bfda49454a6f627eae (diff) | |
Merge branch 'master' into tma821-load-badges-faster-ft
# Conflicts:
# src/utils/users.ts
Diffstat (limited to 'src/components/search/SearchResultCell.tsx')
| -rw-r--r-- | src/components/search/SearchResultCell.tsx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/components/search/SearchResultCell.tsx b/src/components/search/SearchResultCell.tsx index 5a6ea110..16e62a53 100644 --- a/src/components/search/SearchResultCell.tsx +++ b/src/components/search/SearchResultCell.tsx @@ -22,10 +22,10 @@ import { } from '../../utils'; import { checkIfUserIsBlocked, - defaultUserProfile, fetchUserX, userXInStore, } from '../../utils/users'; +import {Avatar} from '../common'; interface SearchResults { profileData: ProfilePreviewType; @@ -129,11 +129,7 @@ const SearchResultsCell: React.FC<SearchResults> = ({ <TouchableOpacity onPress={addToRecentlyStoredAndNavigateToProfile} style={styles.cellContainer}> - <Image - defaultSource={defaultUserProfile()} - source={{uri: avatar}} - style={styles.imageContainer} - /> + <Avatar style={styles.imageContainer} uri={avatar} /> <View style={[styles.initialTextContainer, styles.multiText]}> <Text style={styles.initialTextStyle}>{`@${username}`}</Text> <Text style={styles.secondaryTextStyle}> |
