fix(frontend): remote user card link needs leading @ in handle URL
Some checks failed
lint / lint (push) Has been cancelled
test / unit (push) Has been cancelled
test / integration (push) Has been cancelled
lint / lint (pull_request) Failing after 9m22s
test / unit (pull_request) Failing after 10m46s
test / integration (pull_request) Failing after 17m9s

This commit is contained in:
2026-05-14 22:30:59 +02:00
parent a472ae08fb
commit 72813d7c9b

View File

@@ -38,7 +38,7 @@ export function RemoteUserCard({ actor }: RemoteUserCardProps) {
return ( return (
<div className="flex items-center justify-between p-4 border rounded-lg"> <div className="flex items-center justify-between p-4 border rounded-lg">
<Link <Link
href={`/users/${actor.handle}`} href={`/users/@${actor.handle}`}
className="flex items-center gap-3 hover:opacity-80" className="flex items-center gap-3 hover:opacity-80"
> >
<UserAvatar src={actor.avatarUrl} alt={actor.displayName ?? actor.handle} /> <UserAvatar src={actor.avatarUrl} alt={actor.displayName ?? actor.handle} />