Skip to content

Commit

Permalink
fix: Limit feature paging to 50 (#4120)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg committed Jun 6, 2024
1 parent c13c3d9 commit c14c3a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/common/stores/feature-list-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import segmentOverrides from 'components/SegmentOverrides'
import { Req } from 'common/types/requests'
import { getVersionFeatureState } from 'common/services/useVersionFeatureState'
let createdFirstFeature = false
const PAGE_SIZE = 200
const PAGE_SIZE = 50
function recursivePageGet(url, parentRes) {
return data.get(url).then((res) => {
let response
Expand Down

0 comments on commit c14c3a8

Please sign in to comment.