refactor: update Dockerfile to use Node.js 22-alpine and optimize project queries in portal pages

This commit is contained in:
poyrazavsever
2026-06-09 18:30:14 +03:00
parent 7f1d01d65c
commit 8b51eb64cd
6 changed files with 9 additions and 21 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ export default async function PortalProjectPage({ params }: { params: Promise<{
// 2. Get Project
const { data: project, error } = await supabase
.from("projects")
.select("*")
.select("id, name, description, status, progress, due_date, revision_quota")
.eq("id", id)
.eq("client_id", clientData.id)
.single();