Skip to content

Commit

Permalink
code improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
aziz-access committed Jan 18, 2024
1 parent 0017269 commit 8617fb8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ export class CatalogBrowserToolComponent implements OnInit, OnDestroy {
);
const authenticate$ = this.authService.authenticate$;
this.catalog$$ = combineLatest([catalog$, authenticate$]).subscribe(
(result) => {
const catalog = result[0].entity;
([record, authenticate]) => {
const catalog = record.entity;
this.catalog = catalog;
this.loadCatalogItems(this.catalog);
}
Expand Down

0 comments on commit 8617fb8

Please sign in to comment.