8000 feat: add pagination to the organizaton members table by brettkolodny · Pull Request #16870 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: add pagination to the organizaton members table #16870

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: remove unused code
  • Loading branch information
brettkolodny committed Mar 11, 2025
commit 1f6b13c7d9e3ccc29ce6721a87d1b88cf2ad06b9
7 changes: 0 additions & 7 deletions site/src/api/queries/organizations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,6 @@ export function paginatedOrganizationMembers(
};
}

export const organizationMembers = (id: string) => {
return {
queryFn: () => API.getOrganizationMembers(id),
queryKey: organizationMembersKey(id),
};
};

export const addOrganizationMember = (queryClient: QueryClient, id: string) => {
return {
mutationFn: (userId: string) => {
Expand Down
Loading
0