fix: typo

This commit is contained in:
GareArc 2025-02-26 23:48:41 -05:00
parent 1be3ad93d2
commit 89ef1f0835

View File

@ -56,7 +56,7 @@ def cloud_edition_billing_enabled(view):
def decorated(*args, **kwargs):
features = FeatureService.get_features(current_user.current_tenant_id)
if not features.billing.enabled:
abort(403, "The billing feature is not enabled.")
abort(403, "Billing feature is not enabled.")
return view(*args, **kwargs)
return decorated