diff --git a/apps/api/src/routers/user.ts b/apps/api/src/routers/user.ts index be238d5..f85cd14 100644 --- a/apps/api/src/routers/user.ts +++ b/apps/api/src/routers/user.ts @@ -296,7 +296,7 @@ const getOrganization = factory.createHandlers(async (c) => { const { data: organization, error: organizationError } = await supabase .from("organizations") - .select("id, name") + .select("id, name, logo_url") .eq("id", organizationId) .single(); @@ -420,6 +420,7 @@ const getOrganization = factory.createHandlers(async (c) => { organization: { id: organization.id, name: organization.name, + logo_url: organization.logo_url ?? null, plan, member_count: members?.length || 0, tablo_count: tabloCount || 0,