grain.social is a photo sharing platform built on atproto. grain.social
atproto photography appview
57
fork

Configure Feed

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

fix: fall back to handle instead of truncated DID on profile name

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
app/routes/profile/[did]/+page.svelte
··· 223 223 </div> 224 224 <div class="profile-info"> 225 225 <Avatar {did} src={p.avatar ?? null} name={p.displayName} size={64} {hasStory} onclick={hasStory ? () => (showStoryViewer = true) : p.avatar ? () => (lightboxSrc = p.avatar!) : undefined} /> 226 - <div class="profile-name">{p.displayName || did.slice(0, 18)}</div> 226 + <div class="profile-name">{p.displayName || p.handle || did}</div> 227 227 <div class="handle-row"> 228 228 {#if !blockHide && p.viewer?.followedBy}<span class="follows-you">Follows you</span>{/if} 229 229 <span class="profile-handle">{p.handle ? `@${p.handle}` : did}</span>