refactor(blackjack): update import paths for components

This commit is contained in:
Jan K9f 2025-04-02 09:16:31 +02:00 committed by Jan-Marlon Leibl
parent 56c63d48f6
commit 1d9eec4546
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
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 { HttpErrorResponse } from '@angular/common/http';
import { GameResultComponent } from './components/game-result/game-result.component'; import { GameResultComponent } from './components/game-result/game-result.component';
import { GameState } from './enum/gameState'; import { GameState } from './enum/gameState';
import { NavbarComponent } from '../../../shared/components/navbar/navbar.component'; import { NavbarComponent } from '@shared/components/navbar/navbar.component';
import { UserService } from '../../../service/user.service'; import { UserService } from '@service/user.service';
@Component({ @Component({
selector: 'app-blackjack', selector: 'app-blackjack',

View file

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