diff --git a/src/__tests__/field/captcha/third_party_captcha.test.jsx b/src/__tests__/field/captcha/third_party_captcha.test.jsx index f95c4114a..fcff12d97 100644 --- a/src/__tests__/field/captcha/third_party_captcha.test.jsx +++ b/src/__tests__/field/captcha/third_party_captcha.test.jsx @@ -205,7 +205,8 @@ describe('ThirdPartyCaptcha', () => { 'error-callback': expect.any(Function), language: 'en', theme: 'light', - retry: 'never' + retry: 'never', + 'response-field': false }); }); diff --git a/src/field/captcha/third_party_captcha.jsx b/src/field/captcha/third_party_captcha.jsx index 592d10759..cfe3eee66 100644 --- a/src/field/captcha/third_party_captcha.jsx +++ b/src/field/captcha/third_party_captcha.jsx @@ -150,6 +150,7 @@ export class ThirdPartyCaptcha extends React.Component { language: this.props.hl, theme: 'light', retry: 'never', + 'response-field': false, 'error-callback': () => { if (this.state.retryCount < MAX_RETRY) { getCaptchaProvider(this.props.provider).reset(this.widgetId);