Skip to content

Commit

Permalink
fixup! feat(account): Allows resending of alt email validation
Browse files Browse the repository at this point in the history
  • Loading branch information
castaway committed Nov 4, 2024
1 parent bf45e19 commit 6b09356
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/account-details/personal-details.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class PersonalDetailsComponent {
) {
this.details.subscribe((details: AccountDetailsInterface) => {
this.detailsForm.patchValue(details);
this.is_alternative_email_validated = details.email_alternative_status == 0;
this.is_alternative_email_validated = details.email_alternative_status === 0;
});

this.loadDetails();
Expand Down

0 comments on commit 6b09356

Please sign in to comment.