We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a1d7c1 commit c318b0aCopy full SHA for c318b0a
src/shared/payments/payments.service.ts
@@ -40,7 +40,7 @@ export class PaymentsService {
40
END as "setupComplete"
41
FROM user_payment_methods upm
42
LEFT JOIN user_tax_form_associations utx ON upm.user_id = utx.user_id AND utx.tax_form_status = 'ACTIVE'
43
- LEFT JOIN user_identity_verification_associations uiv ON upm.user_id = uiv.user_id AND uiv.verification_status::text = 'ACTIVE'
+ LEFT JOIN user_identity_verification_associations uiv ON upm.user_id = uiv.user_id
44
WHERE upm.user_id IN (${Prisma.join(uniq(userIds))})
45
`;
46
0 commit comments