diff --git a/packages/twenty-front/src/index.css b/packages/twenty-front/src/index.css index 5c9b489dc4ed..2d696388b83b 100644 --- a/packages/twenty-front/src/index.css +++ b/packages/twenty-front/src/index.css @@ -8,3 +8,8 @@ body { html { font-size: 13px; } + +/* https://stackoverflow.com/questions/44543157/how-to-hide-the-google-invisible-recaptcha-badge */ +.grecaptcha-badge { + visibility: hidden !important; +} \ No newline at end of file diff --git a/packages/twenty-front/src/modules/auth/sign-in-up/hooks/useSignInUp.tsx b/packages/twenty-front/src/modules/auth/sign-in-up/hooks/useSignInUp.tsx index 9c9bf4a7293c..0ce37342908c 100644 --- a/packages/twenty-front/src/modules/auth/sign-in-up/hooks/useSignInUp.tsx +++ b/packages/twenty-front/src/modules/auth/sign-in-up/hooks/useSignInUp.tsx @@ -60,9 +60,7 @@ export const useSignInUp = (form: UseFormReturn
) => { const getCaptchaToken = useCallback(async () => { setIsGeneratingCaptchaToken(true); try { - console.log(isCaptchaScriptLoaded); const captchaToken = await generateCaptchaToken(isCaptchaScriptLoaded); - console.log(captchaToken); if (!isUndefinedOrNull(captchaToken)) { form.setValue('captchaToken', captchaToken); }