fix: add email field to UserTenant TypeScript type

This commit is contained in:
m
2026-03-30 17:19:15 +02:00
parent b21efccfb5
commit d38719db2f

View File

@@ -15,6 +15,7 @@ export interface UserTenant {
user_id: string;
tenant_id: string;
role: string;
email: string;
created_at: string;
}