refactor(blackjack): update import paths for components
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / prettier (pull_request) Failing after 21s
CI / eslint (pull_request) Successful in 24s
CI / test-build (pull_request) Failing after 54s

This commit is contained in:
Jan K9f 2025-04-02 09:16:31 +02:00
parent 274b4ab687
commit 45bc2ba7e6
Signed by: jank
GPG key ID: 22BEAC760B3333D6
2 changed files with 3 additions and 3 deletions

View file

@ -11,8 +11,8 @@ import { BlackjackService } from './services/blackjack.service';
import { HttpErrorResponse } from '@angular/common/http';
import { GameResultComponent } from './components/game-result/game-result.component';
import { GameState } from '../../../enum/gameState';
import { NavbarComponent } from '../../../shared/components/navbar/navbar.component';
import { UserService } from '../../../service/user.service';
import { NavbarComponent } from '@shared/components/navbar/navbar.component';
import { UserService } from '@service/user.service';
@Component({
selector: 'app-blackjack',

View file

@ -23,7 +23,7 @@ export class ConfirmationComponent implements AfterViewInit, OnDestroy {
@ViewChild('modalBg') modalBg!: ElementRef;
@ViewChild('modalCard') modalCard!: ElementRef;
constructor(private modalAnimationService: ModalAnimationService) {}
constructor(private modalAnimationService: ModalAnimationService) { }
ngAfterViewInit() {
if (this.successful) {