Skip to content

Commit c899362

Browse files
docs: fix deprecated redirectUri and syntax error in organizations example (#1125)
## Summary Automated documentation drift fix. 2 issues addressed in the "Use with Auth0 organizations" example (1 P1 · 1 P2). ## Changes - `EXAMPLES.md` — replace deprecated `authorizationParams.redirectUri` with `authorizationParams.redirect_uri` (P2, runtime-deprecated in current SDK) - `EXAMPLES.md` — add missing comma after `organization` property in same object literal (P1, syntax error in copy-pasteable example) <details> <summary>Full Drift Report</summary> | # | Severity | File | Line | Issue | |---|---|---|---|---| | 1 | P2 | EXAMPLES.md | 474 | `authorizationParams.redirectUri` deprecated — replaced with `authorizationParams.redirect_uri` | | 2 | P1 | EXAMPLES.md | 473 | Missing comma after `organization` property — syntax error caught during fix application | </details> --- 🤖 Generated with [syncing-docs](https://github.com/atko-cic/claude-marketplace) skill
1 parent 620a4c2 commit c899362

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

EXAMPLES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,8 +470,8 @@ ReactDOM.render(
470470
domain="YOUR_AUTH0_DOMAIN"
471471
clientId="YOUR_AUTH0_CLIENT_ID"
472472
authorizationParams={{
473-
organization: "YOUR_ORGANIZATION_ID_OR_NAME"
474-
redirectUri: window.location.origin,
473+
organization: "YOUR_ORGANIZATION_ID_OR_NAME",
474+
redirect_uri: window.location.origin,
475475
}}
476476
>
477477
<App />

0 commit comments

Comments
 (0)