feat: shorten login button text for cleaner UI

- 'Login with Extension' → 'Extension Login'
- 'Login with Bunker' → 'Bunker Login'
More concise and easier to scan
This commit is contained in:
Gigi
2025-10-18 09:15:13 +02:00
parent a4afe59437
commit 1f8d18071c

View File

@@ -90,7 +90,7 @@ const LoginOptions: React.FC = () => {
className="login-button login-button-primary"
>
<FontAwesomeIcon icon={faPuzzlePiece} />
<span>{isLoading && !showBunkerInput ? 'Connecting...' : 'Login with Extension'}</span>
<span>{isLoading && !showBunkerInput ? 'Connecting...' : 'Extension Login'}</span>
</button>
{!showBunkerInput ? (
@@ -100,7 +100,7 @@ const LoginOptions: React.FC = () => {
className="login-button login-button-secondary"
>
<FontAwesomeIcon icon={faShieldHalved} />
<span>Login with Bunker</span>
<span>Bunker Login</span>
</button>
) : (
<div className="bunker-input-container">