From 17fbfa29c1b78703b872221e3b590aca3ef5cf7e Mon Sep 17 00:00:00 2001 From: Husam Salhab <47015061+hsalhab@users.noreply.github.com> Date: Mon, 26 Oct 2020 18:42:02 -0400 Subject: [TMA-13] List of following (#72) * move async-storage * removed lock files * added lock files to gitignore * added the wrong file to gitignore * added following list * added numFollowers; removed redundant code * removed followercount stuff for now * Fixed follower count * Made come more changes Co-authored-by: Ashm Walia --- src/components/profile/ProfileHeader.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/components/profile/ProfileHeader.tsx') diff --git a/src/components/profile/ProfileHeader.tsx b/src/components/profile/ProfileHeader.tsx index 25789525..f3ef5dfa 100644 --- a/src/components/profile/ProfileHeader.tsx +++ b/src/components/profile/ProfileHeader.tsx @@ -5,12 +5,15 @@ import FollowCount from './FollowCount'; import {View, Text, StyleSheet} from 'react-native'; import {SCREEN_HEIGHT, SCREEN_WIDTH} from '../../utils'; import {AuthContext, ProfileContext} from '../../routes/'; +import { ProfilePreviewType } from 'src/types'; type ProfileHeaderProps = { - isProfileView: boolean; + isProfileView: boolean, + numFollowing: number, + numFollowers: number; }; -const ProfileHeader: React.FC = ({isProfileView}) => { +const ProfileHeader: React.FC = ({isProfileView, numFollowing, numFollowers}) => { const { profile: {name}, } = isProfileView @@ -26,13 +29,13 @@ const ProfileHeader: React.FC = ({isProfileView}) => { -- cgit v1.2.3-70-g09d2