Skip to content

Commit

Permalink
fix(pipe-b): bad import
Browse files Browse the repository at this point in the history
  • Loading branch information
nlm-pro committed Nov 26, 2018
1 parent d885174 commit e2c7306
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions steps/pipe-b-solution/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import { CardComponent } from './shared/card';
import { AddDialogComponent } from './people/add-dialog/add-dialog.component';
import { FormComponent } from './shared/form';
import { UpdateComponent } from './update/update.component';
import { PeopleService } from 'app/shared/people-service';
import { NaPipe } from 'app/shared/na-pipe';
import { PeopleService } from './shared/people-service';
import { NaPipe } from './shared/na-pipe';

@NgModule({
imports: [
Expand Down
2 changes: 1 addition & 1 deletion steps/pipe-b/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import { CardComponent } from './shared/card';
import { AddDialogComponent } from './people/add-dialog/add-dialog.component';
import { FormComponent } from './shared/form';
import { UpdateComponent } from './update/update.component';
import { PeopleService } from 'app/shared/people-service';
import { PeopleService } from './shared/people-service';

@NgModule({
imports: [
Expand Down

0 comments on commit e2c7306

Please sign in to comment.