Skip to content

Commit 2bf10db

Browse files
authored
Merge pull request #3381 from processing/dependabot/npm_and_yarn/axios-1.8.2
Bump axios from 0.21.4 to 1.8.2
2 parents 645d44b + 8113150 commit 2bf10db

File tree

3 files changed

+16093
-22669
lines changed

3 files changed

+16093
-22669
lines changed

client/modules/User/components/SignupForm.jsx

+1-5
Original file line numberDiff line numberDiff line change
@@ -70,18 +70,14 @@ function SignupForm() {
7070
setShowConfirmPassword(!showConfirmPassword);
7171

7272
function onSubmit(formProps) {
73-
console.log("it's happening");
7473
return dispatch(validateAndSignUpUser(formProps));
7574
}
7675

7776
return (
7877
<Form
7978
fields={['username', 'email', 'password', 'confirmPassword']}
8079
validate={validateSignup}
81-
onSubmit={(values) => {
82-
console.log('Form onSubmit triggered', values);
83-
return onSubmit(values);
84-
}}
80+
onSubmit={onSubmit}
8581
>
8682
{({ handleSubmit, pristine, submitting, invalid, form }) => {
8783
formRef.current = form;

0 commit comments

Comments
 (0)