diff --git a/frontend/src/app/enum/gameState.ts b/frontend/src/app/enum/gameState.ts
index b07bf85..69e3ddf 100644
--- a/frontend/src/app/enum/gameState.ts
+++ b/frontend/src/app/enum/gameState.ts
@@ -3,4 +3,4 @@ export enum GameState {
IN_PROGRESS = 'IN_PROGRESS',
PLAYER_LOST = 'PLAYER_LOST',
DRAW = 'DRAW',
-}
\ No newline at end of file
+}
diff --git a/frontend/src/app/feature/game/blackjack/components/game-controls/game-controls.component.ts b/frontend/src/app/feature/game/blackjack/components/game-controls/game-controls.component.ts
index 00a8eca..7572376 100644
--- a/frontend/src/app/feature/game/blackjack/components/game-controls/game-controls.component.ts
+++ b/frontend/src/app/feature/game/blackjack/components/game-controls/game-controls.component.ts
@@ -16,7 +16,10 @@ import { GameControlsService } from '../../services/game-controls.service';
Deine Punkte: {{ gameControlsService.calculateHandValue(playerCards) }}
- Status: {{ gameControlsService.getStatusText(gameState) }}
+ Status:
+ {{
+ gameControlsService.getStatusText(gameState)
+ }}
@@ -54,7 +57,9 @@ import { GameControlsService } from '../../services/game-controls.service';