Skip to content

Commit dae1342

Browse files
lfcassidyRebeccaTamachiro
authored andcommitted
Remove typo in tutorial's index.js code (#20661)
The example index.js code contains a URL that the user needs to edit. However, it has an additional erroneous '>' character.
1 parent ee77d3f commit dae1342

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/docs/cloudflare-one/tutorials/extend-sso-with-workers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ This approach allows you to:
7272
async fetch(request, env, ctx) {
7373
// The name of the cookie
7474
const COOKIE_NAME = "CF_Authorization";
75-
const CF_GET_IDENTITY = "https://<your-team-name>.cloudflareaccess.com>/cdn-cgi/access/get-identity";
75+
const CF_GET_IDENTITY = "https://<your-team-name>.cloudflareaccess.com/cdn-cgi/access/get-identity";
7676
const cookie = parse(request.headers.get("Cookie") || "");
7777
if (cookie[COOKIE_NAME] != null) {
7878
try {

0 commit comments

Comments
 (0)