Skip to content

Commit a1c968d

Browse files
authored
fix(ts): Fixed withTouchedProps (#138)
withTouchedProps didn't include the correct `touched` property while instead included the `name` property.
1 parent 32b2027 commit a1c968d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export interface withErrorProps {
1717
}
1818

1919
export interface withTouchedProps {
20-
name: string;
20+
touched: boolean;
2121
}
2222

2323
export interface withFormikControlProps {

0 commit comments

Comments
 (0)