Storybooks for commit 3c02b2e75050d532595e4b5b8a8a2884ddaa3671

Date
4/20/2026, 7:11:39 PM UTC
Summary
fix(settings): label delete-account button destructively for passwordless accounts
Description
Because:
- Passwordless accounts skip Step 2 (password entry), so the Step 1 "Continue" button deletes the account immediately.
- The blue "Continue" label misled users into expecting another step, creating a data-loss risk.

This commit:
- Branches the Step 1 action button on account.hasPassword; passwordless accounts now see a red cta-caution "Delete account" button.
- Adds FTL string delete-account-delete-button-passwordless.
- Adds unit tests covering label and style for both variants.
- Adds a Playwright functional test that deletes a passwordless account without a password step.

Fixes FXA-13419