From 6af8490276131fc1d2f61e001d0a8631bddd0508 Mon Sep 17 00:00:00 2001 From: luxferre Date: Tue, 9 Jun 2026 16:06:28 +0100 Subject: [PATCH] fix: wrong contact email in new endpoint --- src/user/router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user/router.py b/src/user/router.py index f5ec0a7..0a37d6f 100644 --- a/src/user/router.py +++ b/src/user/router.py @@ -134,7 +134,7 @@ async def get_user_orgs(user_model: user_model_claims_dependency): "root_user_email": org.root_user_email, "billing_contact": { "id": org.billing_contact_id, - "email": org.owner_contact_rel.email, + "email": org.billing_contact_rel.email, }, "owner_contact": { "id": org.owner_contact_id,