0
fork

Configure Feed

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

add X-Client header to typeahead requests

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

+2 -1
+2 -1
src/lib/components/HandleInput.svelte
··· 26 26 debounceTimer = setTimeout(async () => { 27 27 try { 28 28 const res = await fetch( 29 - `https://typeahead.waow.tech/xrpc/app.bsky.actor.searchActorsTypeahead?q=${encodeURIComponent(query)}&limit=8` 29 + `https://typeahead.waow.tech/xrpc/app.bsky.actor.searchActorsTypeahead?q=${encodeURIComponent(query)}&limit=8`, 30 + { headers: { 'X-Client': 'bsky-highlight-reel' } } 30 31 ); 31 32 if (res.ok) { 32 33 const data = await res.json();