Skip to content

Commit

Permalink
fix: increase member limit to 250 (#19705)
Browse files Browse the repository at this point in the history
increase member limit to 250
  • Loading branch information
raquelmsmith authored Jan 10, 2024
1 parent 395f874 commit 4757792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/organization/membersLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const membersLogic = kea<membersLogicType>([
members: {
__default: [] as OrganizationMemberType[],
loadMembers: async () => {
return (await api.get('api/organizations/@current/members/?limit=200')).results
return (await api.get('api/organizations/@current/members/?limit=250')).results
},
removeMember: async (member: OrganizationMemberType) => {
await api.delete(`api/organizations/@current/members/${member.user.uuid}/`)
Expand Down

0 comments on commit 4757792

Please sign in to comment.