feat(slots): add slot machine component with styling and logic #170

Merged
jleibl merged 9 commits from task/CAS-44/lootbox-selection into main 2025-05-07 16:10:05 +00:00
3 changed files with 9 additions and 9 deletions
Showing only changes of commit 205bf1e52c - Show all commits

View file

@ -21,7 +21,7 @@ export class UserService {
} }
// Subscribe to auth service user updates // Subscribe to auth service user updates
this.authService.userSubject.subscribe(user => { this.authService.userSubject.subscribe((user) => {
this.currentUserSubject.next(user); this.currentUserSubject.next(user);
}); });
} }