diff --git a/frontend/src/app/feature/game/slots/slots.component.html b/frontend/src/app/feature/game/slots/slots.component.html index c5929df..3ac9bf4 100644 --- a/frontend/src/app/feature/game/slots/slots.component.html +++ b/frontend/src/app/feature/game/slots/slots.component.html @@ -9,15 +9,27 @@
-
-

Slot Machine

+
+ +
+

Slot Machine

+ + +{{ slotResult().amount | currency: 'EUR' }} + +
+ +
{{ @@ -42,20 +54,15 @@ class="bg-deep-blue-contrast rounded-lg shadow-md p-2 flex items-center justify-center" > {{ - cell - }} + cell + }}
} }
- -
-
- +{{ slotResult().amount | currency: 'EUR' }} -
-
+
diff --git a/frontend/src/app/feature/game/slots/slots.component.ts b/frontend/src/app/feature/game/slots/slots.component.ts index 71fa482..6672d06 100644 --- a/frontend/src/app/feature/game/slots/slots.component.ts +++ b/frontend/src/app/feature/game/slots/slots.component.ts @@ -119,7 +119,7 @@ export default class SlotsComponent implements OnInit, OnDestroy { this.userService.refreshCurrentUser(); this.isSpinning = false; - }, 1500); + }, 100); }, error: (err) => { console.error('Error spinning slot machine:', err);