tangled
alpha
login
or
join now
rocksky.app
/
rocksky
96
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
rocksky.app
spotify
atproto
lastfm
musicbrainz
scrobbling
listenbrainz
96
fork
atom
overview
issues
7
pulls
pipelines
Limit stories fetch size to 50
tsiry-sandratraina.com
1 month ago
cb70bd32
7f08909a
+1
-1
1 changed file
expand all
collapse all
unified
split
apps
web
src
hooks
useStories.tsx
+1
-1
apps/web/src/hooks/useStories.tsx
···
21
21
queryKey: ["stories"],
22
22
queryFn: () =>
23
23
client.get<{ stories: Stories }>("/xrpc/app.rocksky.feed.getStories", {
24
24
-
params: { size: 150 },
24
24
+
params: { size: 50 },
25
25
}),
26
26
select: (res) => res.data.stories || [],
27
27
});