From 9a55d04edf1735b64db29fe6ef8c5827d31f38eb Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Wed, 19 Aug 2026 14:02:09 -0700 Subject: [PATCH] fix(auth): drop the redundant "Continue with" from the Google sign-in button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The login and signup social buttons sit under an "Or continue with" divider, so "Continue with Google" read as "Or continue with Continue with Google" — and its siblings on the same stack are bare "GitHub" and "Microsoft". Restore "Google" and hand the icon back to the chip's own leftIcon slot so it picks up the canonical 16px chipContentIconClass instead of a className size override. The landing auth modal is a different surface: every button there reads "Continue with X" (Microsoft, GitHub, email), so its Google label is correct and stays. Only its icon changes, 20px back to the 18px both siblings use. --- apps/sim/app/(auth)/components/social-login-buttons.tsx | 4 ++-- apps/sim/app/(landing)/components/auth-modal/auth-modal.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/sim/app/(auth)/components/social-login-buttons.tsx b/apps/sim/app/(auth)/components/social-login-buttons.tsx index e60c448b173..c2156e7dd3f 100644 --- a/apps/sim/app/(auth)/components/social-login-buttons.tsx +++ b/apps/sim/app/(auth)/components/social-login-buttons.tsx @@ -85,12 +85,12 @@ export function SocialLoginButtons({ const googleButton = ( } + leftIcon={GoogleIcon} className={cn(AUTH_BUTTON_CLASS, 'border border-[var(--border-1)]')} disabled={!googleAvailable || isGoogleLoading} onClick={signInWithGoogle} > - {isGoogleLoading ? 'Connecting…' : 'Continue with Google'} + {isGoogleLoading ? 'Connecting…' : 'Google'} ) diff --git a/apps/sim/app/(landing)/components/auth-modal/auth-modal.tsx b/apps/sim/app/(landing)/components/auth-modal/auth-modal.tsx index 71e20d94672..f7a7872c093 100644 --- a/apps/sim/app/(landing)/components/auth-modal/auth-modal.tsx +++ b/apps/sim/app/(landing)/components/auth-modal/auth-modal.tsx @@ -202,7 +202,7 @@ export function AuthModal({ children, defaultView = 'login', source }: AuthModal disabled={!!socialLoading} className={SOCIAL_BTN} > - + {socialLoading === 'google' ? 'Connecting...' : 'Continue with Google'}