1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

fix(finish-signup-icon): [Auth/PM-23593] Show correct icon when email verification not required (#16350)

During account creation, when the environment does not require email verification, show the correct icon (Lock Icon) on the `/finish-signup` page.
This commit is contained in:
rr-bw
2025-09-10 09:25:11 -07:00
committed by GitHub
parent b76d437f9e
commit af790c0d84

View File

@@ -161,6 +161,7 @@ export class RegistrationStartComponent implements OnInit, OnDestroy {
await this.router.navigate(["/finish-signup"], { await this.router.navigate(["/finish-signup"], {
queryParams: { token: result, email: this.email.value }, queryParams: { token: result, email: this.email.value },
}); });
return;
} }
// Result is null, so email verification is required // Result is null, so email verification is required