an app to share curated trails sidetrail.app
atproto nextjs react rsc
50
fork

Configure Feed

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

add timeout for bsky api call

+1
+1
data/queries.ts
··· 168 168 169 169 const res = await fetch( 170 170 `https://public.api.bsky.app/xrpc/app.bsky.actor.getProfile?actor=${encodeURIComponent(did)}`, 171 + { signal: AbortSignal.timeout(5000) }, 171 172 ); 172 173 if (!res.ok) return undefined; 173 174