feat: add bare slots frontend, remove bun start warnings (CAS-61) #164

Merged
ptran merged 8 commits from slots-frontend into main 2025-05-07 12:32:53 +00:00
2 changed files with 7 additions and 15 deletions
Showing only changes of commit 3f00a5b359 - Show all commits

View file

@ -1,5 +1,5 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
import { CommonModule, CurrencyPipe } from '@angular/common';
import { CommonModule } from '@angular/common';
import { animate, style, transition, trigger } from '@angular/animations';
import { GameState } from '../../enum/gameState';
import { AnimatedNumberComponent } from '../animated-number/animated-number.component';

View file

@ -1,14 +1,6 @@
import {
ChangeDetectionStrategy,
Component,
inject,
OnDestroy,
OnInit,
signal,
} from '@angular/core';
import {ChangeDetectionStrategy, Component, inject, OnDestroy, OnInit, signal,} from '@angular/core';
import {RouterModule} from '@angular/router';
import {AuthService} from '../../../service/auth.service';
import { CurrencyPipe } from '@angular/common';
import {UserService} from '@service/user.service';
import {Subscription} from 'rxjs';
import {AnimatedNumberComponent} from '@blackjack/components/animated-number/animated-number.component';