From 3f8c382561c1b18cf7fb2ba2b1ddf65fb6c19e6c Mon Sep 17 00:00:00 2001 From: GareArc Date: Thu, 6 Mar 2025 14:20:53 -0500 Subject: [PATCH] fix: remove email from activation api --- api/services/billing_service.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api/services/billing_service.py b/api/services/billing_service.py index e2120bf7fe..3ce1885194 100644 --- a/api/services/billing_service.py +++ b/api/services/billing_service.py @@ -124,7 +124,6 @@ class BillingService: cls.activation_rate_limit.increment_rate_limit(account.email) json = { "account_id": account.id, - "email": account.email, "token": token, } return BillingService._send_request("POST", "/education/", json=json)