Skip to content

Commit 31b3bd5

Browse files
committed
Fix TS compilation error
1 parent b4c0f8d commit 31b3bd5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ra-core/src/controller/field/useReferenceManyFieldController.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { removeEmpty, useEvent } from '../../util';
88
import { useDataProvider, useGetManyReference } from '../../dataProvider';
99
import { useNotify } from '../../notification';
1010
import { FilterPayload, Identifier, RaRecord, SortPayload } from '../../types';
11-
import type { ListControllerResult, handleSelectAllParams } from '../list';
11+
import type { ListControllerResult, HandleSelectAllParams } from '../list';
1212
import usePaginationState from '../usePaginationState';
1313
import { useRecordSelection } from '../list/useRecordSelection';
1414
import useSortState from '../useSortState';
@@ -206,7 +206,7 @@ export const useReferenceManyFieldController = <
206206
async ({
207207
limit = 250,
208208
queryOptions = {},
209-
}: handleSelectAllParams = {}) => {
209+
}: HandleSelectAllParams = {}) => {
210210
const { meta, onSuccess, onError } = queryOptions;
211211
try {
212212
const results = await queryClient.fetchQuery({

0 commit comments

Comments
 (0)