From 4d00d856c1eacd42db2909512bd40a3d97c26c76 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Thu, 28 May 2026 22:54:13 +0200 Subject: [PATCH] feat: swap TopFriends for ProfileFriendsWidget on profile page --- thoughts-frontend/app/users/[username]/page.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/thoughts-frontend/app/users/[username]/page.tsx b/thoughts-frontend/app/users/[username]/page.tsx index 2a91dd0..c6cd491 100644 --- a/thoughts-frontend/app/users/[username]/page.tsx +++ b/thoughts-frontend/app/users/[username]/page.tsx @@ -51,7 +51,7 @@ import { Card } from "@/components/ui/card"; import { notFound } from "next/navigation"; import { cookies } from "next/headers"; import { FollowButton } from "@/components/follow-button"; -import { TopFriends } from "@/components/top-friends"; +import { ProfileFriendsWidget } from "@/components/profile-friends-widget"; import { Suspense } from "react"; import { ProfileSkeleton } from "@/components/loading-skeleton"; import { UserThoughtsList } from "@/components/user-thoughts-list"; @@ -262,7 +262,11 @@ export default async function ProfilePage({ params }: ProfilePageProps) { }> - +