refactor: update import paths for better readability #109

Merged
jank merged 10 commits from refactor-some-dots into task/CAS-50/add_rest_blackjack_logic_with_frontend_animations 2025-04-02 07:27:11 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit aad692aea5 - Show all commits

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) {