diff --git a/app/components/Profile/Profile.Activity.tsx b/app/components/Profile/Profile.Activity.tsx index 341a7c5..9438cec 100644 --- a/app/components/Profile/Profile.Activity.tsx +++ b/app/components/Profile/Profile.Activity.tsx @@ -5,6 +5,7 @@ import { Button, ButtonGroup, Card } from "flowbite-react"; import { ProfileActivityCollections } from "./Profile.ActivityCollections"; import { useEffect, useState } from "react"; import { CollectionCourusel } from "../CollectionCourusel/CollectionCourusel"; +import { ProfileActivityFriends } from "./Profile.ActivityFriends"; export function ProfileActivity(props: { profile_id: number; @@ -13,6 +14,7 @@ export function ProfileActivity(props: { collectionCount: number; collectionPreview: any; friendsCount: number; + friendsPreview: any; }) { const [tab, setTab] = useState< "collections" | "comments" | "friends" | "videos" @@ -89,7 +91,7 @@ export function ProfileActivity(props: { /> )} {tab == "comments" && <>comments} - {tab == "friends" && <>friends} + {tab == "friends" && } {tab == "videos" && <>videos} ); diff --git a/app/components/Profile/Profile.ActivityCollections.tsx b/app/components/Profile/Profile.ActivityCollections.tsx index 5224144..882965b 100644 --- a/app/components/Profile/Profile.ActivityCollections.tsx +++ b/app/components/Profile/Profile.ActivityCollections.tsx @@ -36,7 +36,6 @@ export const ProfileActivityCollections = (props: { {props.content && props.content.length > 0 && props.content.map((collection) => { - console.log(collection); return ( { + return ( +
+ + {props.content && + props.content.length > 0 && + props.content.map((profile) => { + return ( + + +
+ +

{profile.login}

+
+ +
+ ); + })} + + + +
+
+ ); +}; diff --git a/app/pages/Profile.tsx b/app/pages/Profile.tsx index eca09e0..5721be6 100644 --- a/app/pages/Profile.tsx +++ b/app/pages/Profile.tsx @@ -133,6 +133,7 @@ export const ProfilePage = (props: any) => { collectionCount={user.collection_count} collectionPreview={user.collections_preview || []} friendsCount={user.friend_count} + friendsPreview={user.friends_preview || []} /> )} {!user.is_stats_hidden && (