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', })