From b15dcaa2bcf421d8dd0def31389626af3d16a522 Mon Sep 17 00:00:00 2001 From: picklesrus Date: Wed, 11 Sep 2019 12:36:56 -0400 Subject: [PATCH] Add captcha token to ther request. It was left out of #3291. --- src/components/join-flow/join-flow.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/join-flow/join-flow.jsx b/src/components/join-flow/join-flow.jsx index 989ce7f14..93554102d 100644 --- a/src/components/join-flow/join-flow.jsx +++ b/src/components/join-flow/join-flow.jsx @@ -103,7 +103,7 @@ class JoinFlow extends React.Component { 'password': formData.password, 'birth_month': formData.birth_month, 'birth_year': formData.birth_year, - 'g-recaptcha-response': null, + 'g-recaptcha-response': formData['g-recaptcha-response'], 'gender': formData.gender, 'country': formData.country, 'subscribe': true,