Attic is a cozy space with lofty ambitions. attic.social
11
fork

Configure Feed

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

fix handle lookup

+4 -3
+2 -2
src/css/main.css
··· 66 66 } 67 67 68 68 & [aria-selected="true"] { 69 - background: yellow; 69 + background: #ffc133; 70 70 } 71 71 72 72 & li { 73 73 cursor: pointer; 74 74 75 75 &:hover { 76 - background: cyan; 76 + background: #e6a000; 77 77 } 78 78 } 79 79 }
+2 -1
src/routes/+page.svelte
··· 83 83 const data = await response.json(); 84 84 for (const actor of data.actors) { 85 85 try { 86 + actor.displayName ||= actor.handle; 86 87 const parsed = parsePublicUser(actor); 87 88 if (parsed.handle === handle) continue; 88 89 if (parsed.handle === "handle.invalid") continue; ··· 182 183 aria-label="suggestions" 183 184 tabindex="-1" 184 185 > 185 - {#each bskyUsers as user, i (user.did)} 186 + {#each bskyUsers as user (user.did)} 186 187 <!-- svelte-ignore a11y_click_events_have_key_events --> 187 188 <li 188 189 class="avatar"