Skip to content

Commit

Permalink
MARP-1740 Remove ForwardingError
Browse files Browse the repository at this point in the history
  • Loading branch information
tvtphuc-axonivy committed Dec 26, 2024
1 parent 11a5a41 commit 515f517
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,7 @@ export class ProductFeedbackService {
.set('sort', sort);
const requestURL = `${FEEDBACK_API_URL}/product/${productId}`;
return this.http
.get<FeedbackApiResponse>(requestURL, {
params: requestParams,
context: new HttpContext().set(ForwardingError, true)
})
.get<FeedbackApiResponse>(requestURL, { params: requestParams })
.pipe(
tap(response => {
if (page === 0) {
Expand Down Expand Up @@ -175,4 +172,4 @@ export class ProductFeedbackService {
this.page.set(0);
return this.findProductFeedbacksByCriteria();
}
}
}

0 comments on commit 515f517

Please sign in to comment.