diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 5c60979..80ff4f8 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -28,7 +28,7 @@ import { MarkdownModule } from 'ngx-markdown'; import { provideHttpClient, withFetch, withInterceptorsFromDi } from '@angular/common/http'; import { MatIconRegistry } from '@angular/material/icon'; import { getAnalytics, provideAnalytics } from '@angular/fire/analytics'; -import { provideRemoteConfig, getRemoteConfig, RemoteConfig, getAllChanges } from '@angular/fire/remote-config'; +import { provideRemoteConfig, getRemoteConfig } from '@angular/fire/remote-config'; @NgModule({ declarations: [AppComponent], @@ -126,11 +126,7 @@ import { provideRemoteConfig, getRemoteConfig, RemoteConfig, getAllChanges } fro bootstrap: [AppComponent], }) export class AppModule { - constructor( - private readonly iconRegistry: MatIconRegistry, - private readonly remoteConfig: RemoteConfig, - ) { + constructor(private readonly iconRegistry: MatIconRegistry) { iconRegistry.setDefaultFontSetClass('material-symbols-outlined'); - getAllChanges(this.remoteConfig).subscribe(changes => console.log('RemoteConfig:changes', changes)); } }