From 7bd00a3918a24a97754e3a5f36f762fae1430d99 Mon Sep 17 00:00:00 2001 From: danielvici123 Date: Wed, 19 Nov 2025 19:15:41 +0100 Subject: [PATCH] remove warning --- src/app/components/custom-title/custom-title.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/custom-title/custom-title.ts b/src/app/components/custom-title/custom-title.ts index cd977c0..e6fb068 100644 --- a/src/app/components/custom-title/custom-title.ts +++ b/src/app/components/custom-title/custom-title.ts @@ -1,9 +1,9 @@ import { Component, input } from '@angular/core'; -import { NgClass, NgStyle } from '@angular/common'; +import { NgStyle } from '@angular/common'; @Component({ selector: 'app-custom-title', - imports: [NgStyle, NgClass], + imports: [NgStyle], templateUrl: './custom-title.html', styleUrl: './custom-title.css', })