Skip to content

Commit

Permalink
fix(ts): Fixed withTouchedProps (#138)
Browse files Browse the repository at this point in the history
withTouchedProps didn't include the correct `touched` property while instead included the `name` property.
  • Loading branch information
Almouro authored Mar 5, 2020
1 parent 32b2027 commit a1c968d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export interface withErrorProps {
}

export interface withTouchedProps {
name: string;
touched: boolean;
}

export interface withFormikControlProps {
Expand Down

0 comments on commit a1c968d

Please sign in to comment.