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
@@ -27,7 +27,7 @@ export default async function PortalProjectsPage() {
const { data: projectsData } = await supabase
.from("projects")
.select("id, name, status, progress, due_date, budget_amount, currency")
.select("id, name, status, progress, due_date")
.eq("client_id", clientData.id)
.order("created_at", { ascending: false });