style: fix linter issues
This commit is contained in:
parent
efc2a8ecec
commit
3f00a5b359
2 changed files with 7 additions and 15 deletions
|
@ -1,5 +1,5 @@
|
|||
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
import { CommonModule, CurrencyPipe } from '@angular/common';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { animate, style, transition, trigger } from '@angular/animations';
|
||||
import { GameState } from '../../enum/gameState';
|
||||
import { AnimatedNumberComponent } from '../animated-number/animated-number.component';
|
||||
|
|
|
@ -1,17 +1,9 @@
|
|||
import {
|
||||
ChangeDetectionStrategy,
|
||||
Component,
|
||||
inject,
|
||||
OnDestroy,
|
||||
OnInit,
|
||||
signal,
|
||||
} from '@angular/core';
|
||||
import { RouterModule } from '@angular/router';
|
||||
import { AuthService } from '../../../service/auth.service';
|
||||
import { CurrencyPipe } from '@angular/common';
|
||||
import { UserService } from '@service/user.service';
|
||||
import { Subscription } from 'rxjs';
|
||||
import { AnimatedNumberComponent } from '@blackjack/components/animated-number/animated-number.component';
|
||||
import {ChangeDetectionStrategy, Component, inject, OnDestroy, OnInit, signal,} from '@angular/core';
|
||||
import {RouterModule} from '@angular/router';
|
||||
import {AuthService} from '../../../service/auth.service';
|
||||
import {UserService} from '@service/user.service';
|
||||
import {Subscription} from 'rxjs';
|
||||
import {AnimatedNumberComponent} from '@blackjack/components/animated-number/animated-number.component';
|
||||
|
||||
@Component({
|
||||
selector: 'app-navbar',
|
||||
|
|
Reference in a new issue