diff --git a/src/app/core/api/api.module.ts b/src/app/core/api/api.module.ts index e392aadc..5115bcf9 100644 --- a/src/app/core/api/api.module.ts +++ b/src/app/core/api/api.module.ts @@ -8,7 +8,7 @@ import { ApiConfiguration, ApiConfigurationParams } from './api-configuration'; import { AhbService } from './services/ahb.service'; import { MaintenanceService } from './services/maintenance.service'; - +import { provideHttpClient } from '@angular/common/http'; /** * Module that provides all services and configuration. */ @@ -19,7 +19,8 @@ import { MaintenanceService } from './services/maintenance.service'; providers: [ AhbService, MaintenanceService, - ApiConfiguration + ApiConfiguration, + provideHttpClient() ], }) export class ApiModule { @@ -35,7 +36,7 @@ export class ApiModule { } } - constructor( + constructor( @Optional() @SkipSelf() parentModule: ApiModule, @Optional() http: HttpClient ) { diff --git a/src/app/shared/components/footer/footer.component.html b/src/app/shared/components/footer/footer.component.html index a9896676..68e53884 100644 --- a/src/app/shared/components/footer/footer.component.html +++ b/src/app/shared/components/footer/footer.component.html @@ -17,7 +17,7 @@
- © {{ currentYear }} - made with by
+ © {{ currentYear }} -