diff options
Diffstat (limited to 'src/components/profile/ProfilePreview.tsx')
-rw-r--r-- | src/components/profile/ProfilePreview.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/profile/ProfilePreview.tsx b/src/components/profile/ProfilePreview.tsx index bd015811..6f008540 100644 --- a/src/components/profile/ProfilePreview.tsx +++ b/src/components/profile/ProfilePreview.tsx @@ -147,7 +147,8 @@ const ProfilePreview: React.FC<ProfilePreviewProps> = ({ screenType, ); } - const userXId = loggedInUser.username === user.username ? undefined : user.id; + const userXId = + loggedInUser.username === user.username ? undefined : user.id; navigation.push('Profile', { userXId, screenType, @@ -205,7 +206,6 @@ const ProfilePreview: React.FC<ProfilePreviewProps> = ({ usernameStyle = styles.searchResultUsername; nameStyle = styles.searchResultName; } - return ( <TouchableOpacity onPress={addToRecentlyStoredAndNavigateToProfile} @@ -257,9 +257,9 @@ const styles = StyleSheet.create({ discoverUsersContainer: { alignItems: 'center', textAlign: 'center', - margin: '0.5%', width: '32%', marginVertical: 10, + borderWidth: 1, }, searchResultAvatar: { height: 60, @@ -290,6 +290,7 @@ const styles = StyleSheet.create({ discoverUsersNameContainer: { justifyContent: 'space-evenly', alignSelf: 'stretch', + marginTop: 5, }, searchResultUsername: { fontSize: 18, |