Skip to content

Commit

Permalink
Fix TS compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
fzaninotto committed Jan 3, 2025
1 parent b4c0f8d commit 31b3bd5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { removeEmpty, useEvent } from '../../util';
import { useDataProvider, useGetManyReference } from '../../dataProvider';
import { useNotify } from '../../notification';
import { FilterPayload, Identifier, RaRecord, SortPayload } from '../../types';
import type { ListControllerResult, handleSelectAllParams } from '../list';
import type { ListControllerResult, HandleSelectAllParams } from '../list';
import usePaginationState from '../usePaginationState';
import { useRecordSelection } from '../list/useRecordSelection';
import useSortState from '../useSortState';
Expand Down Expand Up @@ -206,7 +206,7 @@ export const useReferenceManyFieldController = <
async ({
limit = 250,
queryOptions = {},
}: handleSelectAllParams = {}) => {
}: HandleSelectAllParams = {}) => {
const { meta, onSuccess, onError } = queryOptions;
try {
const results = await queryClient.fetchQuery({
Expand Down

0 comments on commit 31b3bd5

Please sign in to comment.