From 0b4c8c6c4005fbf44aad4fdd2a2812bfd637938e Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Fri, 15 May 2026 00:01:13 +0200 Subject: [PATCH] fix(frontend): render bio HTML properly instead of as escaped text --- thoughts-frontend/components/remote-user-profile.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/thoughts-frontend/components/remote-user-profile.tsx b/thoughts-frontend/components/remote-user-profile.tsx index fcfc488..6f7e05c 100644 --- a/thoughts-frontend/components/remote-user-profile.tsx +++ b/thoughts-frontend/components/remote-user-profile.tsx @@ -108,7 +108,10 @@ export function RemoteUserProfile({ {actor.bio && ( -

{actor.bio}

+
)}