(READ ONLY) Margin is an open annotation layer for the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
98
fork

Configure Feed

Select the types of activity you want to include in your feed.

update profile page to use our backend avatar proxy

scanash00 7f13fc29 e472f3dc

+3 -1
+3 -1
web/src/pages/Profile.jsx
··· 133 133 const displayName = profile?.displayName || profile?.handle || handle; 134 134 const displayHandle = 135 135 profile?.handle || (handle?.startsWith("did:") ? null : handle); 136 - const avatarUrl = profile?.avatar; 136 + const avatarUrl = profile?.did 137 + ? `/api/avatar/${encodeURIComponent(profile.did)}` 138 + : null; 137 139 138 140 const getInitial = () => { 139 141 return (displayName || displayHandle || "??")