Remove debug log in LoginCheckpointContainer.tsx
This commit is contained in:
parent
55a3e76d99
commit
984deab894
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ const LoginCheckpointContainer = () => {
|
||||||
const EnhancedForm = withFormik<Props, Values>({
|
const EnhancedForm = withFormik<Props, Values>({
|
||||||
handleSubmit: ({ code, recoveryCode }, { setSubmitting, props: { addError, clearFlashes, location } }) => {
|
handleSubmit: ({ code, recoveryCode }, { setSubmitting, props: { addError, clearFlashes, location } }) => {
|
||||||
clearFlashes();
|
clearFlashes();
|
||||||
console.log(code);
|
|
||||||
loginCheckpoint(location.state?.token || '', code, recoveryCode)
|
loginCheckpoint(location.state?.token || '', code, recoveryCode)
|
||||||
.then(response => {
|
.then(response => {
|
||||||
if (response.complete) {
|
if (response.complete) {
|
||||||
|
|
Loading…
Reference in a new issue