From eb8aa84759ffebf414ec0accce517431ddda31c1 Mon Sep 17 00:00:00 2001 From: Mohammed Mohsin <59914433+mdmohsin7@users.noreply.github.com> Date: Mon, 17 Feb 2025 09:53:44 +0530 Subject: [PATCH] set full agreement for US instead of recipient --- backend/utils/stripe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/utils/stripe.py b/backend/utils/stripe.py index 164211fba5..358b4daea6 100644 --- a/backend/utils/stripe.py +++ b/backend/utils/stripe.py @@ -84,7 +84,7 @@ def create_connect_account(uid: str, country: str): }, }, country=country, - tos_acceptance={"service_agreement": "recipient"}, + tos_acceptance={"service_agreement": "full" if country == "US" else "recipient"}, capabilities={"transfers": {"requested": True}}, metadata={ "uid": uid,