We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08f8302 commit b8fd10eCopy full SHA for b8fd10e
packages/twenty-front/src/modules/captcha/hooks/useRequestFreshCaptchaToken.ts
@@ -47,6 +47,12 @@ export const useRequestFreshCaptchaToken = () => {
47
action: 'submit',
48
})
49
.then((token: string) => {
50
+ // TODO remove this log once debugged
51
+ // eslint-disable-next-line no-console
52
+ console.log(
53
+ 'Google Recaptcha token generated at',
54
+ new Date().toISOString(),
55
+ );
56
setCaptchaToken(token);
57
setIsRequestingCaptchaToken(false);
58
});
0 commit comments