audio streaming app plyr.fm
38
fork

Configure Feed

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

fix: remove debug console.log statements from LikersTooltip (#462)

Removes debug logging that was left in from initial development in PR #233.
Keeps console.error for actual error handling.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>

authored by zzstoatzz.io

Claude and committed by
GitHub
b7346b62 2bae01ff

-4
-4
frontend/src/lib/components/LikersTooltip.svelte
··· 26 26 return; 27 27 } 28 28 29 - console.log('fetching likers for track', trackId); 30 - 31 29 const fetchLikers = async () => { 32 30 try { 33 31 const url = `${API_URL}/tracks/${trackId}/likes`; 34 - console.log('fetching from:', url); 35 32 const response = await fetch(url); 36 33 37 34 if (!response.ok) { ··· 41 38 } 42 39 43 40 const data = await response.json(); 44 - console.log('received likers data:', data); 45 41 likers = data.users || []; 46 42 } catch (err) { 47 43 error = 'failed to load';