From 96fcf53aa13af003eee837bc1d93278537441082 Mon Sep 17 00:00:00 2001 From: Sheldon Vaughn Date: Tue, 26 May 2026 08:49:02 -0500 Subject: [PATCH] fix(doctor): point COOKIE_DOMAIN_NOT_SET at a real docs URL The remediation linked to https://workos.com/docs/authkit/cookie-domain, which 404s. Repoint to the authkit-nextjs README's "Optional configuration" section, which is where WORKOS_COOKIE_DOMAIN is actually documented. Co-authored-by: Cursor --- src/doctor/issues.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doctor/issues.ts b/src/doctor/issues.ts index d2781e7d..66dcbfe6 100644 --- a/src/doctor/issues.ts +++ b/src/doctor/issues.ts @@ -23,7 +23,7 @@ export const ISSUE_DEFINITIONS = { severity: 'warning' as const, message: 'Cookie domain not explicitly set', remediation: 'Consider setting WORKOS_COOKIE_DOMAIN for cross-subdomain auth', - docsUrl: 'https://workos.com/docs/authkit/cookie-domain', + docsUrl: 'https://github.com/workos/authkit-nextjs#optional-configuration', }, NO_SDK_FOUND: { severity: 'error' as const,