From a472ae08fb49fac37410df181aa3844224eb085d Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Thu, 14 May 2026 22:29:35 +0200 Subject: [PATCH] feat(frontend): link remote user card avatar/name to profile page --- thoughts-frontend/components/remote-user-card.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/thoughts-frontend/components/remote-user-card.tsx b/thoughts-frontend/components/remote-user-card.tsx index 7556d0f..0d8d7c6 100644 --- a/thoughts-frontend/components/remote-user-card.tsx +++ b/thoughts-frontend/components/remote-user-card.tsx @@ -2,6 +2,7 @@ import { useState } from "react"; import { useAuth } from "@/hooks/use-auth"; +import Link from "next/link"; import { followUser, RemoteActor } from "@/lib/api"; import { Button } from "@/components/ui/button"; import { UserAvatar } from "@/components/user-avatar"; @@ -36,13 +37,16 @@ export function RemoteUserCard({ actor }: RemoteUserCardProps) { return (
-
+

{actor.displayName ?? actor.handle}

{actor.handle}

-
+