Skip to content

Commit

Permalink
Capitalize type name
Browse files Browse the repository at this point in the history
  • Loading branch information
fzaninotto committed Jan 3, 2025
1 parent 2ebbcad commit b4c0f8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/ra-core/src/controller/list/useSelectAll.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const useSelectAll = (
async ({
queryOptions = {},
limit = 250,
}: handleSelectAllParams = {}) => {
}: HandleSelectAllParams = {}) => {
const { meta, onSuccess, onError, ...otherQueryOptions } =
queryOptions;
try {
Expand Down Expand Up @@ -119,9 +119,9 @@ export interface UseSelectAllParams {
filter?: FilterPayload;
}

export interface handleSelectAllParams<RecordType extends RaRecord = any> {
export interface HandleSelectAllParams<RecordType extends RaRecord = any> {
limit?: number;
queryOptions?: UseGetListOptions<RecordType>;
}

export type UseSelectAllResult = (options?: handleSelectAllParams) => void;
export type UseSelectAllResult = (options?: HandleSelectAllParams) => void;

0 comments on commit b4c0f8d

Please sign in to comment.