diff --git a/src/app/components/player/user-presence-page/user-presence/user-presence.component.ts b/src/app/components/player/user-presence-page/user-presence/user-presence.component.ts index 75ce2e2b..b1db84a3 100644 --- a/src/app/components/player/user-presence-page/user-presence/user-presence.component.ts +++ b/src/app/components/player/user-presence-page/user-presence/user-presence.component.ts @@ -29,7 +29,9 @@ export class UserPresenceComponent implements OnInit, OnDestroy { ) {} ngOnInit(): void { - this._teams = this.teamService.getMyViewTeams(this.viewId); + this._teams = this.teamService + .getMyViewTeams(this.viewId) + .pipe(map((x) => x.sort(firstBy('name')))); this.notificationService.joinPresence(this.viewId); }