Ensure captcha verification code gets submitted in signup request (#5010)

Co-authored-by: Eric Bailey <git@esb.lol>
This commit is contained in:
Hailey
2024-08-28 11:56:04 -07:00
committed by GitHub
parent 94d2180aaa
commit 16d556c3c9
3 changed files with 9 additions and 13 deletions
+1 -2
View File
@@ -41,10 +41,9 @@ export function StepCaptcha() {
(code: string) => {
setCompleted(true)
logEvent('signup:captchaSuccess', {})
const submitTask = {code, mutableProcessed: false}
dispatch({
type: 'submit',
task: submitTask,
task: {verificationCode: code, mutableProcessed: false},
})
},
[dispatch],