this repo has no description
0
fork

Configure Feed

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

remove unneccessary console.log() calls

alice f38e2fc3 6d628453

-2
-2
src/App.tsx
··· 24 24 new BskyAgent({ 25 25 service: 'https://bsky.social', 26 26 persistSession: (_evt: AtpSessionEvent, sess?: AtpSessionData) => { 27 - console.log('setSession', sess); 28 27 if (sess != null) { 29 28 setSession(sess!); 30 29 } ··· 36 35 const [isLoading, setIsLoading] = useState<boolean>(false); 37 36 const loadPosts = useCallback(async () => { 38 37 setIsLoading(true); 39 - console.log('loadPosts'); 40 38 try { 41 39 const data = await getData(agent!, session!, heatmapSubject); 42 40 setData(data);