From 89ef1f0835436823b7593495fd14bec2c56ac910 Mon Sep 17 00:00:00 2001 From: GareArc Date: Wed, 26 Feb 2025 23:48:41 -0500 Subject: [PATCH] fix: typo --- api/controllers/console/wraps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/controllers/console/wraps.py b/api/controllers/console/wraps.py index d9c8bb5481..f1c81b1f6c 100644 --- a/api/controllers/console/wraps.py +++ b/api/controllers/console/wraps.py @@ -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