Skip to content

Commit 2ae2aab

Browse files
committed
fix: Prevent multiple positional args on mutation
1 parent 7b6f06e commit 2ae2aab

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/react/src/data-connect/useDataConnectMutation.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ export type useDataConnectMutationOptions<
2525
export function useDataConnectMutation<
2626
Fn extends
2727
| (() => MutationRef<any, any>)
28-
| ((vars: any) => MutationRef<any, any>)
29-
| ((...args: any[]) => MutationRef<any, any>),
28+
| ((vars: any) => MutationRef<any, any>),
3029
Data = ReturnType<
3130
Fn extends (() => MutationRef<infer D, any>)
3231
? () => MutationRef<D, any>

0 commit comments

Comments
 (0)