From 627c3aa43f77748c2ae2bfc9a2d8cdb546b81d56 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 06:31:31 +0000 Subject: [PATCH] fix(agent-auth): correct dashboard Agents fetch path The dashboard Agents table passed a full '/api/latest/agent-auth/agents' path to sendRequest, which prepends the '/api/v1' base, producing a doubled '/api/v1/api/latest/...' URL that 404'd. Use the relative '/agent-auth/agents' path like other sendRequest callers. Co-Authored-By: madison@stack-auth.com --- .../projects/[projectId]/agent-auth-app/page-client.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/agent-auth-app/page-client.tsx b/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/agent-auth-app/page-client.tsx index 684cc1d4a..c3ead271e 100644 --- a/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/agent-auth-app/page-client.tsx +++ b/apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/agent-auth-app/page-client.tsx @@ -71,7 +71,7 @@ export default function PageClient() { setError(null); try { const response = await adminApp[hexclaveAppInternalsSymbol].sendRequest( - "/api/latest/agent-auth/agents", + "/agent-auth/agents", {}, "admin", );