Skip to content

Commit

Permalink
fix: fix follow list ignoring the first params (#507)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored Jul 22, 2024
1 parent 17413bb commit ff83dc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/ui/src/networks/offchain/api/queries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ export const USER_VOTES_QUERY = gql`
`;

export const USER_FOLLOWS_QUERY = gql`
query ($follower: String!) {
follows(where: { follower: $follower }) {
query ($follower: String!, $first: Int) {
follows(where: { follower: $follower }, first: $first) {
network
space {
id
Expand Down

0 comments on commit ff83dc6

Please sign in to comment.