Skip to content

Commit

Permalink
fix(form): bad imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nlm-pro committed Nov 25, 2018
1 parent a57a76a commit d395f65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions steps/form-solution/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import { PeopleAppComponent } from './app.component';
import { HomeComponent } from './home';
import { PeopleComponent } from './people';
import { CardComponent } from './shared/card';
import { AddDialogComponent } from 'app/people/add-dialog/add-dialog.component';
import { FormComponent } from 'app/shared/form';
import { AddDialogComponent } from './people/add-dialog/add-dialog.component';
import { FormComponent } from './shared/form';
import { FormsModule } from '@angular/forms';

@NgModule({
Expand Down
2 changes: 1 addition & 1 deletion steps/form/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { PeopleAppComponent } from './app.component';
import { HomeComponent } from './home';
import { PeopleComponent } from './people';
import { CardComponent } from './shared/card';
import { AddDialogComponent } from 'app/people/add-dialog/add-dialog.component';
import { AddDialogComponent } from './people/add-dialog/add-dialog.component';

@NgModule({
imports: [
Expand Down

0 comments on commit d395f65

Please sign in to comment.