Skip to content

Commit

Permalink
Fixed the rxjs operators import
Browse files Browse the repository at this point in the history
  • Loading branch information
Luis Fernando Planella Gonzalez committed Feb 2, 2023
1 parent 549bd33 commit 0577f33
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions templates/service.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ import { {{configurationClass}} } from '../{{configurationFile}}';
import { {{responseClass}} } from '../{{responseFile}}';
import { {{requestBuilderClass}} } from '../{{requestBuilderFile}}';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators/map';
import { filter } from 'rxjs/operators/filter';
import { map, filter } from 'rxjs/operators';

{{#imports}}import { {{{typeName}}}{{#useAlias}} as {{{qualifiedName}}}{{/useAlias}} } from '{{{file}}}';
{{/imports}}
Expand Down

0 comments on commit 0577f33

Please sign in to comment.