A decentralized music tracking and discovery platform built on AT Protocol 🎵

[api] ignore jwt expiration

+2 -2
+1 -1
apps/web/src/hooks/useFeed.tsx
··· 9 client.get("/xrpc/app.rocksky.scrobble.getScrobbles", { 10 params: { limit }, 11 }), 12 - // refetchInterval: 5000, 13 select: (res) => res.data.scrobbles || [], 14 }); 15
··· 9 client.get("/xrpc/app.rocksky.scrobble.getScrobbles", { 10 params: { limit }, 11 }), 12 + refetchInterval: 7000, 13 select: (res) => res.data.scrobbles || [], 14 }); 15
+1 -1
apps/web/src/hooks/useNowPlaying.tsx
··· 24 "/xrpc/app.rocksky.feed.getNowPlayings", 25 { params: { size: 7 } } 26 ), 27 - // refetchInterval: 5000, 28 select: (res) => res.data.nowPlayings || [], 29 });
··· 24 "/xrpc/app.rocksky.feed.getNowPlayings", 25 { params: { size: 7 } } 26 ), 27 + refetchInterval: 6000, 28 select: (res) => res.data.nowPlayings || [], 29 });