diff --git a/thoughts-frontend/components/remote-user-profile.tsx b/thoughts-frontend/components/remote-user-profile.tsx index 6e3b548..a337b94 100644 --- a/thoughts-frontend/components/remote-user-profile.tsx +++ b/thoughts-frontend/components/remote-user-profile.tsx @@ -43,7 +43,7 @@ export function RemoteUserProfile({ } } catch { toast.error( - followed ? "Failed to unfollow." : "Failed to send follow request." + followed ? "Failed to unfollow." : "Failed to send follow request.", ); } finally { setLoading(false); @@ -62,9 +62,7 @@ export function RemoteUserProfile({
@@ -104,7 +102,9 @@ export function RemoteUserProfile({

{actor.displayName ?? actor.handle}

-

{actor.handle}

+

+ {actor.handle} +

{actor.bio && ( @@ -117,9 +117,16 @@ export function RemoteUserProfile({ size="sm" className="mt-4 w-full" > - + - {new URL(actor.url).hostname} + + {new URL(actor.url).hostname} + @@ -138,21 +145,23 @@ export function RemoteUserProfile({ )} {actor.attachment.length > 0 && ( - - - {actor.attachment.map((field) => ( - - - - ))} - -
- {field.name} - -
+
+ + + {actor.attachment.map((field) => ( + + + + ))} + +
+ {field.name} + +
+
)}