From 612b7f069b2554d68f87fcbd21cf4b004c79f5ca Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Thu, 14 May 2026 22:51:07 +0200 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20profile=20fields=20=E2=80=94?= =?UTF-8?q?=20grid=20layout=20caps=20name=20col=20at=205rem,=20value=20get?= =?UTF-8?q?s=20remaining=20space?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/remote-user-profile.tsx | 31 +++++++++---------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/thoughts-frontend/components/remote-user-profile.tsx b/thoughts-frontend/components/remote-user-profile.tsx index a337b94..fcfc488 100644 --- a/thoughts-frontend/components/remote-user-profile.tsx +++ b/thoughts-frontend/components/remote-user-profile.tsx @@ -145,22 +145,21 @@ export function RemoteUserProfile({ )} {actor.attachment.length > 0 && ( -
- - - {actor.attachment.map((field) => ( - - - - ))} - -
- {field.name} - -
+
+ {actor.attachment.map((field) => ( +
+ + {field.name} + + +
+ ))}
)}