From d38719db2f15c2d52baf9cefd8771d9d035f9e16 Mon Sep 17 00:00:00 2001 From: m Date: Mon, 30 Mar 2026 17:19:15 +0200 Subject: [PATCH] fix: add email field to UserTenant TypeScript type --- frontend/src/lib/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/lib/types.ts b/frontend/src/lib/types.ts index 6a05c90..18ebe67 100644 --- a/frontend/src/lib/types.ts +++ b/frontend/src/lib/types.ts @@ -15,6 +15,7 @@ export interface UserTenant { user_id: string; tenant_id: string; role: string; + email: string; created_at: string; }