diff --git a/corporate/lib/stripe.py b/corporate/lib/stripe.py index e92cc06fe8..3870450d5c 100644 --- a/corporate/lib/stripe.py +++ b/corporate/lib/stripe.py @@ -1312,7 +1312,6 @@ class BillingSession(ABC): if customer is not None: plan = get_current_plan_by_customer(customer) if plan is not None: - assert plan.end_date is not None assert plan.status == CustomerPlan.ACTIVE old_end_date = plan.end_date plan.end_date = new_end_date diff --git a/templates/corporate/support/current_plan_forms_support.html b/templates/corporate/support/current_plan_forms_support.html index 071c3f8b27..29919498f5 100644 --- a/templates/corporate/support/current_plan_forms_support.html +++ b/templates/corporate/support/current_plan_forms_support.html @@ -9,12 +9,13 @@ -{% if current_plan.end_date and current_plan.status == current_plan.ACTIVE %} +{% if current_plan.status == current_plan.ACTIVE %}
Plan end date
{{ csrf_input }} - +
{% endif %}