style: fix formatting in constructor definitions
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / eslint (pull_request) Successful in 18s
CI / test-build (pull_request) Failing after 26s
CI / prettier (pull_request) Successful in 30s

This commit is contained in:
Jan K9f 2025-04-02 09:17:46 +02:00
parent 45bc2ba7e6
commit 1626ca0d10
Signed by: jank
GPG key ID: 22BEAC760B3333D6
2 changed files with 2 additions and 2 deletions

View file

@ -96,5 +96,5 @@ export class GameControlsComponent {
protected readonly GameState = GameState;
constructor(protected gameControlsService: GameControlsService) { }
constructor(protected gameControlsService: GameControlsService) {}
}

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