From 89e8ca507238742456aa4697b5637dd2d1b089d3 Mon Sep 17 00:00:00 2001 From: Louis <76006412+lfcassidy@users.noreply.github.com> Date: Sun, 9 Mar 2025 13:40:35 +0000 Subject: [PATCH] Remove typo in tutorial's index.js code The example index.js code contains a URL that the user needs to edit. However, it has an additional erroneous '>' character. --- .../docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx b/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx index b0456fcefd2bfe..84ef76aa55937a 100644 --- a/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx +++ b/src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx @@ -72,7 +72,7 @@ This approach allows you to: async fetch(request, env, ctx) { // The name of the cookie const COOKIE_NAME = "CF_Authorization"; - const CF_GET_IDENTITY = "https://.cloudflareaccess.com>/cdn-cgi/access/get-identity"; + const CF_GET_IDENTITY = "https://.cloudflareaccess.com/cdn-cgi/access/get-identity"; const cookie = parse(request.headers.get("Cookie") || ""); if (cookie[COOKIE_NAME] != null) { try {