Skip to content

Commit

Permalink
fix: remove unnecessary imports (#1015)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdegand authored Jun 21, 2024
1 parent 056d88e commit d05c279
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { TableComponent } from '@angular-challenges/shared/ui';
import { AsyncPipe } from '@angular/common';
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { CurrencyPipe } from './currency.pipe';
import { ProductRowComponent } from './product-row.component';
import { products } from './product.model';

@Component({
standalone: true,
imports: [AsyncPipe, CurrencyPipe, TableComponent, ProductRowComponent],
imports: [TableComponent, ProductRowComponent],
selector: 'app-root',
template: `
<table [items]="products">
Expand Down

0 comments on commit d05c279

Please sign in to comment.