Skip to content

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp-1337 committed Sep 29, 2024
1 parent a5a04d7 commit 9d95422
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ export class AppComponent implements AfterViewInit {
public icons: IconsClass,
private update: UpdateService,
) {
this.update.updatesAvailable;
this.update.updatesAvailable.subscribe(available => {
// Handle the available updates here
console.log('Updates available:', available);
});
}

ngAfterViewInit() {
Expand Down

0 comments on commit 9d95422

Please sign in to comment.