From 3d22e7a3cb511517f741b2bf36c6c29e94ebe86c Mon Sep 17 00:00:00 2001 From: Gigi Date: Sat, 18 Oct 2025 09:16:52 +0200 Subject: [PATCH] feat: simplify button text to single words MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 'Extension Login' → 'Extension' - 'Bunker Login' → 'Bunker' Icons + context make the action clear, minimalist approach --- 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 45f6713a..30e79191 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...' : 'Extension Login'} + {isLoading && !showBunkerInput ? 'Connecting...' : 'Extension'} {!showBunkerInput ? ( @@ -100,7 +100,7 @@ const LoginOptions: React.FC = () => { className="login-button login-button-secondary" > - Bunker Login + Bunker ) : (