From 096d3ac4c7b98f98eb20978cf1f07ff5cc91d492 Mon Sep 17 00:00:00 2001 From: Sudarshan Kumar Date: Tue, 4 Feb 2020 21:48:49 +0530 Subject: Made Header and Footer generic Changes made to make header and footer generic by taking required values from environment.ts Issue-ID: PORTAL-795 Change-Id: I03303e10ef763767d12d16d2ee6454f81a250562 Signed-off-by: Sudarshan Kumar --- portal-FE-os/src/app/app.module.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'portal-FE-os/src') diff --git a/portal-FE-os/src/app/app.module.ts b/portal-FE-os/src/app/app.module.ts index a7b267fb..a99c2da6 100644 --- a/portal-FE-os/src/app/app.module.ts +++ b/portal-FE-os/src/app/app.module.ts @@ -45,7 +45,6 @@ import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { HeaderInterceptor } from './shared/interceptors/header-interceptor'; import { CookieService } from 'ngx-cookie-service'; -import { FooterComponent } from './footer/footer.component'; @NgModule({ @@ -56,7 +55,7 @@ import { FooterComponent } from './footer/footer.component'; HttpClientModule, AppRoutingModule ], - declarations: [AppComponent, FooterComponent], + declarations: [AppComponent], providers: [CookieService,{ provide: HTTP_INTERCEPTORS, useClass: HeaderInterceptor, -- cgit 1.2.3-korg