From a036ca0a934003b01b45bf348285ed78624ce3cc Mon Sep 17 00:00:00 2001 From: "Kevin C. Coram" Date: Tue, 31 Dec 2019 11:05:04 -0800 Subject: [PATCH] Remove un-used `contact` attribute --- apps/baseline/src/app/app.component.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/baseline/src/app/app.component.ts b/apps/baseline/src/app/app.component.ts index 7121e60..7400be5 100644 --- a/apps/baseline/src/app/app.component.ts +++ b/apps/baseline/src/app/app.component.ts @@ -9,7 +9,6 @@ import { Subscription } from 'rxjs'; styleUrls: ['./app.component.css'], }) export class AppComponent implements OnInit, OnDestroy { - contact: Contact; form: FormGroup; private subscription: Subscription; @@ -20,7 +19,6 @@ export class AppComponent implements OnInit, OnDestroy { this.subscription = this.service .loadContact() .subscribe((data: Contact) => { - this.contact = data; this.form = this.createForm(data); }); }