Skip to content

Commit

Permalink
PER-9237
Browse files Browse the repository at this point in the history
Linting
  • Loading branch information
crisnicandrei committed Jul 31, 2023
1 parent ae225af commit 8106702
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/>
</div>
<p class="input-error" *ngIf="giftForm.get('email').errors?.email">
The email you have entered is not valid.
The email you have entered is not valid.
</p>
<div class="dialog-form-field dialog-form-field-amount">
<div class="text">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@
.input-error {
margin-bottom: 1rem;
color: $red;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export class GiftStorageComponent implements OnDestroy {
if (!control.value) {
return of(null);
}

return timer(1000).pipe(
map(() => {
let emailValidationResult = Validators.email(control);
Expand Down

0 comments on commit 8106702

Please sign in to comment.