From ea2c08669fca0ca639e6d059fabdebd2aa982974 Mon Sep 17 00:00:00 2001 From: Tanmay Deep Sharma Date: Tue, 9 Jun 2026 13:34:23 +0530 Subject: [PATCH] style(billing): shorten past_due comment under line limit --- .../app/services/enterprise/billing/switch_currency_service.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enterprise/app/services/enterprise/billing/switch_currency_service.rb b/enterprise/app/services/enterprise/billing/switch_currency_service.rb index 4159e94eb..7760534b4 100644 --- a/enterprise/app/services/enterprise/billing/switch_currency_service.rb +++ b/enterprise/app/services/enterprise/billing/switch_currency_service.rb @@ -130,7 +130,7 @@ class Enterprise::Billing::SwitchCurrencyService ) end - # Includes trialing (a prior switch leaves the new sub trialing); excludes past_due so a delinquent account can't switch to restore access without paying. + # Includes trialing (a prior switch leaves the new sub trialing); excludes past_due so a delinquent account can't switch to restore access unpaid. def live_subscriptions Stripe::Subscription.list(customer: stripe_customer_id, status: 'all', limit: 100).data .select { |subscription| %w[active trialing].include?(subscription.status) }