Skip to content

Commit

Permalink
feat(editor): Remove unnessecary declaration in app.module
Browse files Browse the repository at this point in the history
  • Loading branch information
Angi-Kinas committed Sep 4, 2023
1 parent 66e6c99 commit f4bfd44
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/search/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,14 @@ import { environment } from '../environments/environment'
import { AppRoutingModule } from './app-routing.module'
import { AppComponent } from './app.component'
import { MainSearchComponent } from './main-search/main-search.component'
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
import { MyOrgRecordsComponent } from './apps/metadata-editor/src/app/my-org-records/my-org-records.component'
import { NoopAnimationsModule } from '@angular/platform-browser/animations'

export const metaReducers: MetaReducer<any>[] = !environment.production
? [storeFreeze]
: []

@NgModule({
declarations: [AppComponent, MainSearchComponent, MyOrgRecordsComponent],
declarations: [AppComponent, MainSearchComponent],
imports: [
BrowserModule,
AppRoutingModule,
Expand Down

0 comments on commit f4bfd44

Please sign in to comment.