From 92c5ccef3d2ba852b8182335db78572b3defe03c Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Thu, 16 May 2024 05:09:33 +0530 Subject: [PATCH] fix: my activity user image overflow (#4469) --- web/components/profile/overview/activity.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/components/profile/overview/activity.tsx b/web/components/profile/overview/activity.tsx index 7dd20611f..50a67e737 100644 --- a/web/components/profile/overview/activity.tsx +++ b/web/components/profile/overview/activity.tsx @@ -44,13 +44,11 @@ export const ProfileActivity = observer(() => {
{userProfileActivity.results.map((activity) => (
-
+
{activity.actor_detail?.avatar && activity.actor_detail?.avatar !== "" ? ( {activity.actor_detail?.display_name} ) : ( @@ -72,7 +70,9 @@ export const ProfileActivity = observer(() => { )}

-

{calculateTimeAgo(activity.created_at)}

+

+ {calculateTimeAgo(activity.created_at)} +

))}