From 80522b3b0a168b1b7778894241ed2d3a60897b7f Mon Sep 17 00:00:00 2001 From: Turnkey Intern Date: Wed, 25 Feb 2026 18:34:41 +0000 Subject: [PATCH] fix: correct broken delegated access links in overview page Relative paths (concepts/policies/delegated-access-*) were resolving to double-prefixed URLs like /concepts/policies/concepts/policies/... because the file lives at that path. Added leading slash to make them absolute paths. --- concepts/policies/delegated-access-overview.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/concepts/policies/delegated-access-overview.mdx b/concepts/policies/delegated-access-overview.mdx index 8769bc7c..9259d2f9 100644 --- a/concepts/policies/delegated-access-overview.mdx +++ b/concepts/policies/delegated-access-overview.mdx @@ -29,7 +29,7 @@ This avoids temporarily granting the Delegated User root access — see [Caution **Limitations:** - You can’t assume the delegated user or its policies already exist. Before referencing it, you’ll need to call `fetchOrCreateP256ApiKeyUser` and `fetchOrCreatePolicies` to ensure the user and permissions are properly set up. -For a detailed step-by-step guide see [Client-side Delegated Access setup](concepts/policies/delegated-access-frontend). +For a detailed step-by-step guide see [Client-side Delegated Access setup](/concepts/policies/delegated-access-frontend). ### 2. Backend @@ -56,7 +56,7 @@ If you adopt this approach, implement strict validation to confirm that: For most end-user applications, it’s recommended to perform delegated access setup client-side, where all actions are explicitly initiated and approved by the user. -For a detailed step-by-step guide see [Server-side Delegated Access setup](concepts/policies/delegated-access-backend). +For a detailed step-by-step guide see [Server-side Delegated Access setup](/concepts/policies/delegated-access-backend). ## Frequently Asked Questions