From 0d5ec04f5c495230dfe6c311d5d1fcf7ab51a537 Mon Sep 17 00:00:00 2001 From: mawkone Date: Mon, 8 Jun 2026 13:18:43 -0700 Subject: [PATCH] fix(agency): force no-store cache on workspace metadata fetch to prevent stale routing --- vibn-frontend/app/[workspace]/projects/page.tsx | 1 + 1 file changed, 1 insertion(+) 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();