From 632c49838320aa5c908843df87df088d44a83927 Mon Sep 17 00:00:00 2001 From: Phan Huy Tran Date: Wed, 7 May 2025 14:56:34 +0200 Subject: [PATCH 1/2] fix: remove unuzsed import, shit linters --- frontend/src/app/feature/game/slots/slots.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/feature/game/slots/slots.component.ts b/frontend/src/app/feature/game/slots/slots.component.ts index 19ffb57..a5c6dc6 100644 --- a/frontend/src/app/feature/game/slots/slots.component.ts +++ b/frontend/src/app/feature/game/slots/slots.component.ts @@ -13,7 +13,7 @@ interface SlotResult { @Component({ selector: 'app-slots', standalone: true, - imports: [NavbarComponent, KeyValuePipe, UpperCasePipe, NgClass, FormsModule], + imports: [NavbarComponent, KeyValuePipe, UpperCasePipe, FormsModule], templateUrl: './slots.component.html', changeDetection: ChangeDetectionStrategy.OnPush, }) -- 2.47.2 From f04a253702eba504d012596c1a0c0910893272a2 Mon Sep 17 00:00:00 2001 From: Phan Huy Tran Date: Wed, 7 May 2025 14:58:59 +0200 Subject: [PATCH 2/2] style: remove another import --- frontend/src/app/feature/game/slots/slots.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/feature/game/slots/slots.component.ts b/frontend/src/app/feature/game/slots/slots.component.ts index a5c6dc6..ad73a03 100644 --- a/frontend/src/app/feature/game/slots/slots.component.ts +++ b/frontend/src/app/feature/game/slots/slots.component.ts @@ -1,7 +1,7 @@ import { ChangeDetectionStrategy, Component, inject, OnInit, signal } from '@angular/core'; import { NavbarComponent } from '@shared/components/navbar/navbar.component'; import { HttpClient } from '@angular/common/http'; -import { KeyValuePipe, NgClass, UpperCasePipe } from '@angular/common'; +import { KeyValuePipe, UpperCasePipe } from '@angular/common'; import { FormsModule } from '@angular/forms'; interface SlotResult { -- 2.47.2