From 57d7b0f02fb50a520a72e8ddc6768fcfe5c1883a Mon Sep 17 00:00:00 2001 From: gbuomprisco Date: Wed, 3 Dec 2025 09:24:25 +0800 Subject: [PATCH] chore: bump version to 2.21.8 in package.json and update captcha messages in auth components - Updated application version from 2.21.7 to 2.21.8 in package.json. - Modified "verifyingCaptcha" message in auth.json for clearer user feedback during captcha verification. - Enhanced conditional rendering for captcha loading states in PasswordSignInForm and PasswordSignUpForm components to improve user experience during authentication processes. --- apps/web/public/locales/en/auth.json | 2 +- package.json | 2 +- .../src/components/password-sign-in-form.tsx | 8 ++++++-- .../src/components/password-sign-up-form.tsx | 16 ++++++++++++---- 4 files changed, 20 insertions(+), 8 deletions(-) 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({ - + - + + + - + + + - <> + - +