File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed
components/UserAutocomplete
pages/OrganizationSettingsPage Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,12 @@ import Autocomplete from "@mui/material/Autocomplete";
3
3
import CircularProgress from "@mui/material/CircularProgress" ;
4
4
import TextField from "@mui/material/TextField" ;
5
5
import { getErrorMessage } from "api/errors" ;
6
- import {
7
- organizationMembers ,
8
- paginatedOrganizationMembers ,
9
- } from "api/queries/organizations" ;
6
+ import { organizationMembers } from "api/queries/organizations" ;
10
7
import { users } from "api/queries/users" ;
11
8
import type { OrganizationMemberWithUserData , User } from "api/typesGenerated" ;
12
9
import { Avatar } from "components/Avatar/Avatar" ;
13
10
import { AvatarData } from "components/Avatar/AvatarData" ;
14
11
import { useDebouncedFunction } from "hooks/debounce" ;
15
- import { usePaginatedQuery } from "hooks/usePaginatedQuery" ;
16
12
import {
17
13
type ChangeEvent ,
18
14
type ComponentProps ,
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ beforeEach(() => {
38
38
39
39
const renderPage = async ( ) => {
40
40
renderWithOrganizationSettingsLayout ( < OrganizationMembersPage /> , {
41
- route : `/organizations/${ MockOrganization . name } /members` ,
42
- path : "/organizations/:organization/members" ,
41
+ route : `/organizations/${ MockOrganization . name } /paginated- members` ,
42
+ path : "/organizations/:organization/paginated- members" ,
43
43
} ) ;
44
44
await waitForLoaderToBeRemoved ( ) ;
45
45
} ;
You can’t perform that action at this time.
0 commit comments