Skip to content

Commit

Permalink
Add the new services and pages
Browse files Browse the repository at this point in the history
  • Loading branch information
fearganni committed Dec 24, 2023
1 parent 6bcb44b commit ef0dabd
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ import { register } from 'swiper/element/bundle';

import { APP_CONFIG } from '../environments/environment';

import { AppSettings, ElectronService, JarallaxService } from './core';
import {
AppSettings,
ElectronService,
JarallaxService,
ThunderstoreService,
} from './core';

@Component({
selector: 'app-root',
Expand All @@ -29,7 +34,9 @@ export class AppComponent implements OnInit, AfterViewChecked {
private lb: LoadingBarService,
private translate: TranslateService,
private electronService: ElectronService,
private jarallaxService: JarallaxService
private jarallaxService: JarallaxService,

private thunderstoreService: ThunderstoreService
) {
this.translate.setDefaultLang('en');
console.log('APP_CONFIG', APP_CONFIG);
Expand Down Expand Up @@ -64,6 +71,8 @@ export class AppComponent implements OnInit, AfterViewChecked {
}
},
});

this.thunderstoreService.update();
}

ngAfterViewChecked(): void {
Expand Down

0 comments on commit ef0dabd

Please sign in to comment.