Skip to content

Commit

Permalink
Update validation strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
kpyszkowski committed Oct 29, 2024
1 parent 42f78bb commit 878b1f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dapp/src/components/shared/TokenAmountForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ const TokenAmountForm = withFormik<TokenAmountFormProps, TokenAmountFormValues>(
handleSubmit: (values, { props }) => {
props.onSubmitForm(values)
},
validateOnBlur: false,
validateOnChange: true,
validateOnBlur: true,
validateOnChange: false,
},
)(TokenAmountFormBase)

Expand Down

0 comments on commit 878b1f4

Please sign in to comment.