diff --git a/app/soapbox/features/landing_page/components/registration_form.js b/app/soapbox/features/landing_page/components/registration_form.js index 5c17e3824..fd525fb0d 100644 --- a/app/soapbox/features/landing_page/components/registration_form.js +++ b/app/soapbox/features/landing_page/components/registration_form.js @@ -48,6 +48,7 @@ class RegistrationForm extends ImmutablePureComponent { this.setState({ submissionLoading: true }); this.props.dispatch(register(this.state.params.toJS())).catch(error => { this.setState({ submissionLoading: false }); + this.refreshCaptcha(); }); }