Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
crisnicandrei committed Nov 8, 2023
1 parent 799ae15 commit 5e97beb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { HttpClient, HttpHandler } from '@angular/common/http';
import { CoreModule } from '@core/core.module';
import { Dialog } from '@root/app/dialog/dialog.service';
import { AccountService } from '@shared/services/account/account.service';
import { GiftingResponse } from '@shared/services/api/billing.repo';
import { AccountVO } from '../../../models/account-vo';
import { GiftStorageComponent } from './gift-storage.component';
import { GiftingResponse } from '@shared/services/api/billing.repo';

describe('GiftStorageComponent', () => {
let shallow: Shallow<GiftStorageComponent>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ export class GiftStorageComponent implements OnDestroy {
this.accountService.setAccount(newAccount);
this.isSuccessful = response.isSuccessful;
}
})
),
}),

this.giftForm.get('email')?.valueChanges.subscribe((value) => {
this.successMessage = '';
this.giftForm.get('amount')?.updateValueAndValidity();
Expand All @@ -127,7 +127,8 @@ export class GiftStorageComponent implements OnDestroy {
this.duplicateEmails = [];
}
}
});
})
);
}

ngOnDestroy(): void {
Expand Down

0 comments on commit 5e97beb

Please sign in to comment.