redirect home after a user signs up (#1070)

This commit is contained in:
Joel Elias Méndez 2021-11-02 17:39:53 -03:00 committed by GitHub
parent 7cdb6d3603
commit 7015e21966
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ class MainSignUpWidget extends React.Component {
loading: false,
message: 'success'
}, () => {
setTimeout(() => {history.push('/check-ticket')}, 2000);
setTimeout(() => {history.push('/')}, 2000);
});
}