async ngOnInit()

in ui-angular/src/app/app.component.ts [65:73]


  async ngOnInit(): Promise<void> {
    try {
      this.subscribeToAuthChanges();
      this.registerLoadingIndicator();
      await this.onLoad();
    } catch (e) {
      console.warn(e);
    }
  }