Skip to content

Commit b4c0f8d

Browse files
committed
Capitalize type name
1 parent 2ebbcad commit b4c0f8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/ra-core/src/controller/list/useSelectAll.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const useSelectAll = (
5959
async ({
6060
queryOptions = {},
6161
limit = 250,
62-
}: handleSelectAllParams = {}) => {
62+
}: HandleSelectAllParams = {}) => {
6363
const { meta, onSuccess, onError, ...otherQueryOptions } =
6464
queryOptions;
6565
try {
@@ -119,9 +119,9 @@ export interface UseSelectAllParams {
119119
filter?: FilterPayload;
120120
}
121121

122-
export interface handleSelectAllParams<RecordType extends RaRecord = any> {
122+
export interface HandleSelectAllParams<RecordType extends RaRecord = any> {
123123
limit?: number;
124124
queryOptions?: UseGetListOptions<RecordType>;
125125
}
126126

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

0 commit comments

Comments
 (0)