feat: implement client portal project view with revision request functionality and layout structure

This commit is contained in:
poyrazavsever
2026-06-06 22:31:55 +03:00
parent a631b65c0b
commit c361fff5a7
10 changed files with 724 additions and 5 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export default async function ClientDetailPage({ params }: { params: Promise<{ i
const { data: clientData, error } = await supabase
.from("clients")
.select("id, name, company_name, email, phone, website, pipeline_stage, status, notes")
.select("id, name, company_name, email, phone, website, pipeline_stage, status, notes, client_auth_id")
.eq("id", id)
.eq("user_id", user.id)
.single();