Skip to content

Commit

Permalink
fix: remove it icon if not useful
Browse files Browse the repository at this point in the history
  • Loading branch information
astagi committed Dec 9, 2024
1 parent 3a5ae08 commit e30efe2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { combineLatest, distinctUntilChanged, map, shareReplay, skip, startWith,
import { ItAbstractComponent } from '../../../../abstracts/abstract.component';
import { TransferStore } from '../store/transfer.store';
import { TranslateModule } from '@ngx-translate/core';
import { ItIconComponent } from 'projects/design-angular-kit/src/public_api';
import { SourceType, TransferItem } from '../transfer.model';

interface SelectableTransferItem<T> extends TransferItem<T> {
Expand All @@ -15,7 +14,7 @@ interface SelectableTransferItem<T> extends TransferItem<T> {
@Component({
selector: 'it-transfer-list',
standalone: true,
imports: [ItIconComponent, TranslateModule, AsyncPipe, TitleCasePipe],
imports: [TranslateModule, AsyncPipe, TitleCasePipe],
templateUrl: './transfer-list.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { ItIconComponent } from 'projects/design-angular-kit/src/public_api';
selector: 'it-transfer',
standalone: true,
templateUrl: './transfer.component.html',
imports: [ItIconComponent, TranslateModule, ItTransferListComponent, NgClass, AsyncPipe, ReactiveFormsModule],
imports: [TranslateModule, ItIconComponent, ItTransferListComponent, NgClass, AsyncPipe, ReactiveFormsModule],
providers: [TransferStore],
changeDetection: ChangeDetectionStrategy.OnPush,
})
Expand Down

0 comments on commit e30efe2

Please sign in to comment.