diff --git a/app/models/reports/duplicate_claims.rb b/app/models/reports/duplicate_claims.rb index 7f8c6e426f..fa5f1e1d37 100644 --- a/app/models/reports/duplicate_claims.rb +++ b/app/models/reports/duplicate_claims.rb @@ -21,7 +21,6 @@ def initialize @claims = Claim .includes(:eligibility) .approved - .where.missing(:payments) .where(academic_year: AcademicYear.current) .select { |claim| Claim::MatchingAttributeFinder.new(claim).matching_claims.any? } end