diff --git a/vibn-frontend/app/[workspace]/projects/page.tsx b/vibn-frontend/app/[workspace]/projects/page.tsx index 9a60651..56841b7 100644 --- a/vibn-frontend/app/[workspace]/projects/page.tsx +++ b/vibn-frontend/app/[workspace]/projects/page.tsx @@ -130,6 +130,7 @@ export default function ProjectsPage() { // Fetch Workspace metadata first to determine routing const wsRes = await fetch(`/api/workspaces/${workspace}`, { credentials: "include", + cache: "no-store", }); if (wsRes.ok) { const wsData = await wsRes.json();