diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index 05fde6a18c..aff5be83f4 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -567,7 +567,7 @@ namespace Bit.Core.Services if(customer.DefaultSource == null || (!(customer.DefaultSource is Card) && !(customer.DefaultSource is BankAccount))) { - // throw new BadRequestException("No payment method is available."); + throw new BadRequestException("No payment method is available."); } }