diff --git a/apps/web/public/locales/en/auth.json b/apps/web/public/locales/en/auth.json index 9c35819b5..90ddba17e 100644 --- a/apps/web/public/locales/en/auth.json +++ b/apps/web/public/locales/en/auth.json @@ -10,7 +10,7 @@ "signOut": "Sign out", "signingIn": "Signing in...", "signingUp": "Signing up...", - "verifyingCaptcha": "Verifying...", + "verifyingCaptcha": "Checking you're not a robot...", "doNotHaveAccountYet": "Do not have an account yet?", "alreadyHaveAnAccount": "Already have an account?", "signUpToAcceptInvite": "Please sign in/up to accept the invite", diff --git a/package.json b/package.json index b320a459a..d0abacf13 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "next-supabase-saas-kit-turbo", - "version": "2.21.7", + "version": "2.21.8", "private": true, "sideEffects": false, "engines": { diff --git a/packages/features/auth/src/components/password-sign-in-form.tsx b/packages/features/auth/src/components/password-sign-in-form.tsx index bfc0d46aa..f77404b8e 100644 --- a/packages/features/auth/src/components/password-sign-in-form.tsx +++ b/packages/features/auth/src/components/password-sign-in-form.tsx @@ -114,7 +114,7 @@ export function PasswordSignInForm({ data-test="auth-submit-button" className={'group w-full'} type="submit" - disabled={loading || redirecting} + disabled={loading || redirecting || captchaLoading} > @@ -135,7 +135,11 @@ export function PasswordSignInForm({ - + - + + + - + + + - <> + - +