Remove debug log in LoginCheckpointContainer.tsx

This commit is contained in:
Matthew Penner 2020-07-11 13:10:01 -06:00
parent 55a3e76d99
commit 984deab894

View file

@ -81,7 +81,7 @@ const LoginCheckpointContainer = () => {
const EnhancedForm = withFormik<Props, Values>({
handleSubmit: ({ code, recoveryCode }, { setSubmitting, props: { addError, clearFlashes, location } }) => {
clearFlashes();
console.log(code);
loginCheckpoint(location.state?.token || '', code, recoveryCode)
.then(response => {
if (response.complete) {