Skip to content

Commit

Permalink
remove useless pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysVuika committed Oct 25, 2023
1 parent a0c9e7c commit fbd2779
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,7 @@ export class ProcessFilterService {
* @returns The filter just added
*/
addProcessFilter(filter: FilterProcessRepresentationModel): Observable<UserProcessInstanceFilterRepresentation> {
return from(this.userFiltersApi.createUserProcessInstanceFilter(filter))
.pipe(
map((response) => response)
);
return from(this.userFiltersApi.createUserProcessInstanceFilter(filter));
}

/**
Expand Down

0 comments on commit fbd2779

Please sign in to comment.