Skip to content

Commit db183cc

Browse files
fix: update vault requirement messaging for clarity (#34)
- "Plug in your KeepKey to get started" → "KeepKey Vault Required" with subtitle explaining the desktop app must be running - "Launch KeepKey Desktop" → "Launch KeepKey Vault" - "Connect to your KeepKey" → "Retry Connection" - "Don't have a KeepKey? Buy a KeepKey" → "Don't have KeepKey Vault? Download at keepkey.com" - Loading text: "Connecting to KeepKey" → "Connecting to KeepKey Vault" - Fallback URL updated to /get-started Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c415975 commit db183cc

2 files changed

Lines changed: 14 additions & 10 deletions

File tree

pages/side-panel/src/components/Connect.tsx

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const Connect: React.FC<ConnectProps> = ({ setIsConnecting }) => {
5757
if (window) {
5858
setTimeout(() => {
5959
window.location.assign('keepkey://launch');
60-
window.open('https://keepkey.com/launch', '_blank');
60+
window.open('https://keepkey.com/get-started', '_blank');
6161
}, 100); // Adding a slight delay before launching the URL
6262
}
6363
} catch (error) {
@@ -77,24 +77,28 @@ const Connect: React.FC<ConnectProps> = ({ setIsConnecting }) => {
7777
textAlign="center"
7878
boxShadow="lg">
7979
<Image src={'https://i.ibb.co/jR8WcJM/kk.gif'} alt="KeepKey" />
80-
<Text fontSize="lg" mb={4}>
81-
Plug in your KeepKey to get started...
80+
<Text fontSize="lg" fontWeight="bold" mb={2}>
81+
KeepKey Vault Required
82+
</Text>
83+
<Text fontSize="sm" mb={4} color="gray.500">
84+
The KeepKey Vault desktop app must be running to use this extension.
8285
</Text>
8386
<Stack direction="column" spacing={4} mb={4}>
8487
<Button colorScheme="blue" onClick={launchKeepKey}>
85-
Launch KeepKey Desktop
88+
Launch KeepKey Vault
8689
</Button>
8790

88-
<br />
89-
<h3>Already running?</h3>
91+
<Text fontSize="xs" color="gray.400">
92+
Already running?
93+
</Text>
9094
<Button colorScheme="teal" onClick={connectKeepkey}>
91-
Connect to your KeepKey
95+
Retry Connection
9296
</Button>
9397
</Stack>
9498
<Text fontSize="sm" mt={4}>
95-
Dont have a KeepKey?{' '}
99+
Don't have KeepKey Vault?{' '}
96100
<Button variant="link" color="teal.500" onClick={openKeepKeyLink}>
97-
Buy a KeepKey
101+
Download at keepkey.com
98102
</Button>
99103
</Text>
100104
</Card>

pages/side-panel/src/components/Loading.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const Loading: React.FC<ConnectProps> = ({ setIsConnecting, keepkeyState }) => {
3030
<Box textAlign="center">
3131
<h2>Status: {keepkeyState}</h2>
3232
<Spinner size="6xl" />
33-
<Text mt={4}>Connecting to KeepKey...</Text>
33+
<Text mt={4}>Connecting to KeepKey Vault...</Text>
3434
</Box>
3535
</Card>
3636
</Box>

0 commit comments

Comments
 (0)