From b401b9259d413c11fabe43b83704778b5b816807 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Wed, 6 Aug 2025 03:21:37 +0000 Subject: [PATCH] Fix activeProjects reference to use stats object cgen-d129a6cdf2744e0ea79326e6d806d263 --- client/pages/Dashboard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/pages/Dashboard.tsx b/client/pages/Dashboard.tsx index 704faa6b..d5576f4b 100644 --- a/client/pages/Dashboard.tsx +++ b/client/pages/Dashboard.tsx @@ -132,10 +132,10 @@ export default function Dashboard() { ); } - const stats = [ + const statsDisplay = [ { label: "Active Projects", - value: activeProjects, + value: stats.activeProjects, icon: Rocket, color: "from-blue-500 to-purple-600", },