From d300d62c6000af58710b7d12e42618b71964defe Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 31 May 2026 18:09:10 -0400 Subject: [PATCH] polish(ext/setup): honest vault-step button labels + drop needless export Both vault-step buttons now read "continue" -- they collect input and advance to the device step, where the SW actually performs create_vault/attach_vault (with its own busy spinner). The old "create vault" / "verify and attach" labels implied the action happened on that click, which is no longer true. Drops the unused export on vaultConfig(). Co-Authored-By: Claude Opus 4.8 --- extension/src/setup/setup-steps.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extension/src/setup/setup-steps.ts b/extension/src/setup/setup-steps.ts index 09dad61..ed0e1f2 100644 --- a/extension/src/setup/setup-steps.ts +++ b/extension/src/setup/setup-steps.ts @@ -109,7 +109,7 @@ function updateStrengthUi(): void { } } -export function vaultConfig(): VaultConfig { +function vaultConfig(): VaultConfig { return { hostType: state.hostType, hostUrl: state.hostType === 'github' ? 'https://api.github.com' : state.hostUrl, @@ -365,7 +365,7 @@ function renderVaultAttach(): string {
- +
`; } @@ -426,7 +426,7 @@ function renderVaultNew(): string {
- +
`; }