···3737 return new StreamplaceAgent(oauthSession);
3838 }, [oauthSession]);
3939}
4040+4141+// always returns an unauthenticated agent pointed at the public bluesky API
4242+// probably should not be used in most places, but in case we have a bug it may be useful
4343+export function useUnauthenticatedBlueskyAppViewAgent(): StreamplaceAgent {
4444+ return useMemo(() => {
4545+ return new StreamplaceAgent("https://public.api.bsky.app");
4646+ }, []);
4747+}