interactive intro to open social at-me.zzstoatzz.io
25
fork

Configure Feed

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

use typeahead.waow.tech for actor search

Add X-Client header to identify the app in traffic stats.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

zzstoatzz ad51ef59 06414ca8

+4 -2
+4 -2
src/landing/main.js
··· 35 35 return null; 36 36 } 37 37 38 - // Search for handles using Bluesky's search 38 + // Search for handles using typeahead.waow.tech 39 39 async function searchHandles(query) { 40 40 try { 41 - const response = await fetch(`https://typeahead.waow.tech/xrpc/app.bsky.actor.searchActorsTypeahead?q=${encodeURIComponent(query)}&limit=8`); 41 + const response = await fetch(`https://typeahead.waow.tech/xrpc/app.bsky.actor.searchActorsTypeahead?q=${encodeURIComponent(query)}&limit=8`, { 42 + headers: { 'X-Client': 'at-me.zzstoatzz.io' }, 43 + }); 42 44 if (response.ok) { 43 45 const data = await response.json(); 44 46 return data.actors.map(actor => ({