remove unused import

This commit is contained in:
pakintada@gmail.com 2024-03-29 11:02:32 +07:00
parent 6aee36d02b
commit 03a848c456

View file

@ -1,9 +1,6 @@
import { import {
AfterViewInit, AfterViewInit,
ApplicationRef,
Component, Component,
ComponentFactoryResolver,
Injector,
Input, Input,
OnChanges, OnChanges,
OnDestroy, OnDestroy,
@ -11,7 +8,6 @@ import {
SimpleChanges, SimpleChanges,
TemplateRef, TemplateRef,
ViewChild, ViewChild,
ViewContainerRef,
} from '@angular/core'; } from '@angular/core';
import { CommonModule } from '@angular/common'; import { CommonModule } from '@angular/common';
import { RecipeService } from 'src/app/core/services/recipe.service'; import { RecipeService } from 'src/app/core/services/recipe.service';
@ -19,11 +15,8 @@ import { MatCardModule } from '@angular/material/card';
import { MatButtonModule } from '@angular/material/button'; import { MatButtonModule } from '@angular/material/button';
import { copy } from 'src/app/shared/helpers/copy'; import { copy } from 'src/app/shared/helpers/copy';
import { compare } from 'src/app/shared/helpers/compare'; import { compare } from 'src/app/shared/helpers/compare';
import { AsyncStorage } from 'src/app/shared/helpers/asyncStorage';
import { ChangesComponent } from './changes/changes.component'; import { ChangesComponent } from './changes/changes.component';
import { import {
CdkPortal,
DomPortalOutlet,
Portal, Portal,
PortalModule, PortalModule,
TemplatePortal, TemplatePortal,
@ -32,7 +25,6 @@ import { MatSelectModule } from '@angular/material/select';
import { MatFormFieldModule } from '@angular/material/form-field'; import { MatFormFieldModule } from '@angular/material/form-field';
import { FormsModule } from '@angular/forms'; import { FormsModule } from '@angular/forms';
import { RecipeListComponent } from '../recipes/recipe-details/recipe-list/recipe-list.component'; import { RecipeListComponent } from '../recipes/recipe-details/recipe-list/recipe-list.component';
import { ResizeEvent, ResizableModule } from 'angular-resizable-element';
import { Debugger } from 'src/app/shared/helpers/debugger'; import { Debugger } from 'src/app/shared/helpers/debugger';
import { convertFromInterProductCode, inRange } from 'src/app/shared/helpers/recipe'; import { convertFromInterProductCode, inRange } from 'src/app/shared/helpers/recipe';
@ -50,7 +42,6 @@ import { convertFromInterProductCode, inRange } from 'src/app/shared/helpers/rec
MatFormFieldModule, MatFormFieldModule,
MatSelectModule, MatSelectModule,
FormsModule, FormsModule,
ResizableModule,
], ],
}) })
export class MergeComponent export class MergeComponent