Skip to content

Commit

Permalink
[fix] Increase Form's onBlur() timeout in order to have a safer margin
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioh8010 committed Mar 24, 2023
1 parent bc04b79 commit 0150666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Form.js
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class Form extends React.Component {
setTimeout(() => {
this.setTouchedInput(inputID);
this.validate(this.state.inputValues);
}, 100);
}, 200);
},
onInputChange: (value, key) => {
const inputKey = key || inputID;
Expand Down

0 comments on commit 0150666

Please sign in to comment.