delete not used pipe

This commit is contained in:
Daniel Rodriguez 2021-09-18 19:28:53 +02:00
parent 6fb35250c9
commit fbb6da3925
2 changed files with 1 additions and 13 deletions

View file

@ -9,13 +9,10 @@ import { PoolService } from 'src/modules/pool/services/pool.service';
import { LayoutComponent } from './components/layout/layout.component';
import { HomeComponent } from './components/home/home.component';
import { removeSetPipe } from 'src/pipes/removeSet.pipe';
@NgModule({
declarations: [
LayoutComponent,
HomeComponent,
removeSetPipe
HomeComponent
],
imports: [
CommonModule,

View file

@ -1,9 +0,0 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({ name: 'removeSet' })
export class removeSetPipe implements PipeTransform {
transform(name: string): string {
return name.substring(5);
}
}