fix(frontend): use thought.author.avatarUrl as base in ThoughtThread — fixes remote author avatars on feed and detail pages

This commit is contained in:
2026-05-15 10:46:38 +02:00
parent 159a8ca43b
commit cf78b3e28f

View File

@@ -17,7 +17,8 @@ export function ThoughtThread({
const author = {
username: thought.author.username,
displayName: thought.author.displayName,
...authorDetails.get(thought.author.username),
avatarUrl: thought.author.avatarUrl, // API-provided avatar (from DB COALESCE)
...authorDetails.get(thought.author.username), // override for local users
};
return (