Skip to content

Commit

Permalink
Update FeedbackServiceImpl.java
Browse files Browse the repository at this point in the history
  • Loading branch information
ndkhanh-axonivy committed Jul 23, 2024
1 parent 4e143ef commit 3e69e5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public FeedbackServiceImpl(FeedbackRepository feedbackRepository, UserRepository
@Override
public Page<Feedback> findFeedbacks(String productId, Pageable pageable) throws NotFoundException {
validateProductExists(productId);
return feedbackRepository.searchByProductId(productId, pageable);
return feedbackRepository.searchByProductId("", pageable);
}

@Override
Expand Down

0 comments on commit 3e69e5a

Please sign in to comment.