Skip to content

Commit

Permalink
fixed error (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-tspencer committed Sep 28, 2023
1 parent 4a9ac9f commit 914b88e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/card-teams/card-teams.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class CardTeamsComponent implements OnDestroy, OnInit {
) {
// subscribe to the active MSEL
(this.mselQuery.selectActive() as Observable<Msel>).pipe(takeUntil(this.unsubscribe$)).subscribe(msel => {
this.mselTeamList = msel.teams;
this.mselTeamList = msel?.teams;
});
}

Expand Down

0 comments on commit 914b88e

Please sign in to comment.