Compare commits

..

1 commit

Author SHA1 Message Date
34c70a0996 fix: Remove constructor injection
Some checks failed
CI / Get Changed Files (pull_request) Successful in 11s
Label PRs based on size / Check PR size (pull_request) Successful in 20s
Pull Request Labeler / labeler (pull_request_target) Successful in 9s
CI / Backend Tests (pull_request) Has been skipped
CI / Checkstyle Main (pull_request) Has been skipped
CI / oxlint (pull_request) Successful in 31s
CI / prettier (pull_request) Successful in 35s
CI / eslint (pull_request) Successful in 42s
CI / test-build (pull_request) Successful in 53s
CI / Docker frontend validation (pull_request) Successful in 57s
CI / Docker backend validation (pull_request) Has been skipped
CI / Playwright (pull_request) Failing after 2m45s
Claude PR Review / claude-code (pull_request) Successful in 11m9s
2025-06-10 13:02:07 +02:00
3 changed files with 24 additions and 3 deletions

View file

@ -1,4 +1,11 @@
import { ChangeDetectionStrategy, Component, Input, OnChanges, SimpleChanges, inject } from '@angular/core';
import {
ChangeDetectionStrategy,
Component,
Input,
OnChanges,
SimpleChanges,
inject,
} from '@angular/core';
import { CommonModule } from '@angular/common';
import { Card } from '@blackjack/models/blackjack.model';
import { PlayingCardComponent } from '../playing-card/playing-card.component';

View file

@ -1,4 +1,11 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, inject } from '@angular/core';
import {
ChangeDetectionStrategy,
Component,
EventEmitter,
Input,
Output,
inject,
} from '@angular/core';
import { CommonModule } from '@angular/common';
import { GameState } from '@blackjack/enum/gameState';
import { Card } from '@blackjack/models/blackjack.model';

View file

@ -1,4 +1,11 @@
import { ChangeDetectionStrategy, Component, Input, OnChanges, SimpleChanges, inject } from '@angular/core';
import {
ChangeDetectionStrategy,
Component,
Input,
OnChanges,
SimpleChanges,
inject,
} from '@angular/core';
import { CommonModule } from '@angular/common';
import { PlayingCardComponent } from '../playing-card/playing-card.component';
import { Card } from '@blackjack/models/blackjack.model';