dev use authtoken
Test Workflow / test (push) Successful in 4s

This commit is contained in:
vladp
2026-02-25 13:06:27 +07:00
parent cb46ac6c88
commit 694681fccc
@@ -91,7 +91,7 @@ public class PayoutMethodService {
if (!byUserId.isEmpty()) { if (!byUserId.isEmpty()) {
for (PayoutMethod payoutMethod : byUserId) { for (PayoutMethod payoutMethod : byUserId) {
if (payoutMethod.getMethodType().equals(PayoutType.CARD.getDisplayName())) { if (payoutMethod.getMethodType().equals(PayoutType.CARD.getDisplayName().toUpperCase())) {
payoutMethodRepository.delete(payoutMethod); payoutMethodRepository.delete(payoutMethod);
} }
} }