Skip to content

Commit

Permalink
PM-8482 Change KDF Confirmation no longer has browser validation (#9485)
Browse files Browse the repository at this point in the history
* PM-8482 Change KDF Confirmation no longer has browser validation

* PM-8482 - ChangeKdfConfirmationComponent - use form invalid instead of manual form valid check

---------

Co-authored-by: Jared Snider <[email protected]>
  • Loading branch information
1 parent 66dc01c commit 1976843
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ export class ChangeKdfConfirmationComponent {
}

submit = async () => {
if (this.form.invalid) {
return;
}
this.loading = true;
await this.makeKeyAndSaveAsync();
this.platformUtilsService.showToast(
Expand Down

0 comments on commit 1976843

Please sign in to comment.