Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
fix tagger pagination error
Browse files Browse the repository at this point in the history
  • Loading branch information
Anu-Ujin committed Oct 29, 2023
1 parent 4204545 commit 2803441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui-tags/src/containers/Tagger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const TaggerContainer = (props: FinalProps) => {
tagsQuery &&
tagsQuery.fetchMore({
variables: {
perPage: tags.length,
perPage: 20,
page
},
updateQuery: (prevResult, { fetchMoreResult }) => {
Expand Down

0 comments on commit 2803441

Please sign in to comment.