From 1f8d18071c42577f0ef3d8b7c2f3a1986a3df0d8 Mon Sep 17 00:00:00 2001 From: Gigi Date: Sat, 18 Oct 2025 09:15:13 +0200 Subject: [PATCH] feat: shorten login button text for cleaner UI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 'Login with Extension' → 'Extension Login' - 'Login with Bunker' → 'Bunker Login' More concise and easier to scan --- src/components/LoginOptions.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/LoginOptions.tsx b/src/components/LoginOptions.tsx index 2b299532..da4fc782 100644 --- a/src/components/LoginOptions.tsx +++ b/src/components/LoginOptions.tsx @@ -90,7 +90,7 @@ const LoginOptions: React.FC = () => { className="login-button login-button-primary" > - {isLoading && !showBunkerInput ? 'Connecting...' : 'Login with Extension'} + {isLoading && !showBunkerInput ? 'Connecting...' : 'Extension Login'} {!showBunkerInput ? ( @@ -100,7 +100,7 @@ const LoginOptions: React.FC = () => { className="login-button login-button-secondary" > - Login with Bunker + Bunker Login ) : (