Skip to content

Commit

Permalink
fix: setFieldsValue bug with union type of Array and null (#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiner-tang authored Jul 2, 2023
1 parent e0590b6 commit 10a2efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ type RecursivePartial<T> = NonNullable<T> extends object
? RecursivePartial<T[P]>
: T[P];
}
: any;
: T;

export interface FormInstance<Values = any> {
// Origin Form API
Expand Down

0 comments on commit 10a2efe

Please sign in to comment.