Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions desktop/src/features/onboarding/ui/BackupStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function BackupStep({ direction, onBack, onNext }: BackupStepProps) {
>
<div className="w-full max-w-[500px] text-center">
<h1 className="text-title font-normal text-foreground">
Your unique identity has been created
Your unique identity key has been created
</h1>
<p className="mt-5 text-sm leading-6 text-foreground/80">
This key is stored in your system keychain, but save it some place
Expand Down Expand Up @@ -139,8 +139,8 @@ export function BackupStep({ direction, onBack, onNext }: BackupStepProps) {
<p className="mx-auto mt-6 flex max-w-[440px] items-start justify-center gap-1.5 text-center text-xs leading-5 text-[var(--buzz-onboarding-backup-ink)]">
<Info className="mt-0.5 h-3.5 w-3.5 shrink-0" />
<span>
Never share your private key. Anyone can impersonate you and
access everything in your account.
Never share your private key. Anyone with this key can impersonate
you and access everything in your account.
</span>
</p>
) : null}
Expand Down
5 changes: 3 additions & 2 deletions desktop/src/features/onboarding/ui/DefaultConfigStep.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,9 @@ export function DefaultConfigStep({
Configure your default model settings
</h1>
<p className="mx-auto mt-3 max-w-[440px] text-sm leading-5 text-foreground/80">
These settings will be used by your agents in Buzz. You can always
change them in your Settings.
This will be set as your default model configuration across Buzz. You
can always change this in your Settings or give specific agents a
different configuration.
</p>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export function MachineOnboardingFlow({
<p className="mt-5 max-w-[440px] text-sm leading-6 text-foreground/80">
{identityLost
? "Your identity is no longer in the system keyring. Re-import your nsec to restore it."
: "If you already have a Nostr account, enter your private key below to get started."}
: "If you already have a Buzz account, enter your private key below to get started."}
</p>
</div>
<div className="buzz-onboarding-key-import-position w-full">
Expand Down
2 changes: 1 addition & 1 deletion desktop/tests/e2e/identity-lost.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ test("normal first launch uses the already-persisted identity", async ({

await expect(
page.getByRole("heading", {
name: "Your unique identity has been created",
name: "Your unique identity key has been created",
}),
).toBeVisible();
// Non-landing pages layer the dot grid over the chartreuse→light-blue gradient.
Expand Down
7 changes: 5 additions & 2 deletions desktop/tests/e2e/onboarding-agent-defaults.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -969,8 +969,11 @@ test("config page shows Agent defaults form", async ({ page }) => {
await expect(page.getByLabel("OpenAI API Key")).toHaveCount(0);
await expect(effortSelect).toBeVisible();
await expect(
page.getByText("This will be set as your default model configuration"),
).toHaveCount(0);
page.getByText(
"This will be set as your default model configuration across Buzz. You can always change this in your Settings or give specific agents a different configuration.",
{ exact: true },
),
).toBeVisible();
await expect(page.getByTestId("agent-readiness-badge")).toHaveCount(0);

await waitForAnimations(page);
Expand Down
2 changes: 1 addition & 1 deletion desktop/tests/e2e/onboarding-backup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test("backup step appears on fresh-key path after profile submit", async ({
await expect(page.getByTestId("onboarding-page-backup")).toBeVisible();
await expect(
page.getByRole("heading", {
name: "Your unique identity has been created",
name: "Your unique identity key has been created",
}),
).toBeVisible();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ test("machine onboarding: landing, backup, setup docked CTAs", async ({
await page.getByRole("button", { name: "Create a new identity key" }).click();
await expect(
page.getByRole("heading", {
name: "Your unique identity has been created",
name: "Your unique identity key has been created",
}),
).toBeVisible();
await waitForAnimations(page);
Expand Down
Loading