Skip to content

Commit

Permalink
fix(email-verification-feature-flag): [PM-7882] Email Verification - …
Browse files Browse the repository at this point in the history
…Fixed some of the comments that got spliced.
  • Loading branch information
Patrick-Pimentel-Bitwarden committed Jan 14, 2025
1 parent 6417c7f commit 3e153ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export class AcceptEmergencyComponent extends BaseAcceptComponent {
}

async register() {
// We have to override the base component route as we don't need users to
// complete email verification if they are coming directly an emailed invite.
await this.router.navigate(["/finish-signup"], {
queryParams: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ export class AcceptOrganizationComponent extends BaseAcceptComponent {
return;
}

// complete email verification if they are coming directly an emailed invite.
// We have to override the base component route as we don't need users to complete email verification
// if they are coming directly from an emailed org invite.
await this.router.navigate(["/finish-signup"], {
queryParams: {
email: invite.email,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ export class AcceptProviderComponent extends BaseAcceptComponent {
}

async register() {
// We have to override the base component route as we don't need users to
// complete email verification if they are coming directly an emailed invite.
await this.router.navigate(["/finish-signup"], {
queryParams: {
email: this.email,
Expand Down

0 comments on commit 3e153ba

Please sign in to comment.