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
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:
parent
a622dbc7f4
commit
98668a3fb0
2 changed files with 2 additions and 9 deletions
|
@ -61,7 +61,7 @@ export default class SlotsComponent implements OnInit, OnDestroy {
|
||||||
this.slotInfo.set(data);
|
this.slotInfo.set(data);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.userSubscription = this.userService.currentUser$.subscribe((user) => {
|
this.userSubscription = this.userService.getCurrentUser().subscribe((user) => {
|
||||||
this.balance.set(user?.balance ?? 0);
|
this.balance.set(user?.balance ?? 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,4 @@
|
||||||
import {
|
import { ChangeDetectionStrategy, Component, EventEmitter, inject, Input, Output } from '@angular/core';
|
||||||
ChangeDetectionStrategy,
|
|
||||||
Component,
|
|
||||||
EventEmitter,
|
|
||||||
inject,
|
|
||||||
Input,
|
|
||||||
Output,
|
|
||||||
} from '@angular/core';
|
|
||||||
import { TransactionService } from '@service/transaction.service';
|
import { TransactionService } from '@service/transaction.service';
|
||||||
import { Observable } from 'rxjs';
|
import { Observable } from 'rxjs';
|
||||||
import { AsyncPipe, CurrencyPipe, DatePipe, NgIf } from '@angular/common';
|
import { AsyncPipe, CurrencyPipe, DatePipe, NgIf } from '@angular/common';
|
||||||
|
|
Reference in a new issue