Skip to content

Commit

Permalink
fix: increase followings size
Browse files Browse the repository at this point in the history
  • Loading branch information
jebibot committed May 5, 2024
1 parent 84fd431 commit 19dc1f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/browser/hooks/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@ export function useFollowedChannels(options?: UseStoreOptions) {
return [];
}

const { content } = await sendRuntimeMessage("request", "v1/channels/followings");
const { content } = await sendRuntimeMessage("request", "v1/channels/followings", {
size: 505,
});

if (!content?.followingList?.length) {
return [];
Expand Down

0 comments on commit 19dc1f9

Please sign in to comment.