style: clean up import statements for consistency
Some checks failed
CI / Get Changed Files (pull_request) Successful in 8s
CI / Checkstyle Main (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Successful in 12s
CI / oxlint (pull_request) Successful in 27s
CI / eslint (pull_request) Successful in 31s
CI / Docker frontend validation (pull_request) Successful in 44s
CI / prettier (pull_request) Failing after 27s
CI / test-build (pull_request) Successful in 34s

This commit is contained in:
Constantin Simonis 2025-05-07 15:14:23 +02:00 committed by Jan-Marlon Leibl
commit 98668a3fb0
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
2 changed files with 2 additions and 9 deletions

View file

@ -61,7 +61,7 @@ export default class SlotsComponent implements OnInit, OnDestroy {
this.slotInfo.set(data);
});
this.userSubscription = this.userService.currentUser$.subscribe((user) => {
this.userSubscription = this.userService.getCurrentUser().subscribe((user) => {
this.balance.set(user?.balance ?? 0);
});