diff --git a/apps/angular/pipe-easy/src/app/app.component.ts b/apps/angular/pipe-easy/src/app/app.component.ts index e7bd6b5..efa51d5 100644 --- a/apps/angular/pipe-easy/src/app/app.component.ts +++ b/apps/angular/pipe-easy/src/app/app.component.ts @@ -12,9 +12,9 @@ import { Component } from '@angular/core'; `, }) export class AppComponent { - persons = ['toto', 'jack', 'samuel', 'steve']; + persons = ['toto', 'jack']; - // TODO: very heavy computation + // very heavy computation heavyComputation(name: string, index: number) { return `${name} - ${index}`; }