Skip to content

Commit

Permalink
fix(clerk-react): Remove typo in clerkjs script attributes (#3304)
Browse files Browse the repository at this point in the history
  • Loading branch information
panteliselef authored May 1, 2024
1 parent 0bf39d8 commit e93b577
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/thin-mails-shake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/clerk-react': patch
---

Remove type from clerkjs script attributes that prevents the satellite apps from function properly.
2 changes: 1 addition & 1 deletion packages/react/src/utils/loadClerkJsScript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const buildClerkJsScriptAttributes = (options: LoadClerkJsScriptOptions) => {
}

if (options.domain) {
obj['data-clerk-clerk-domain'] = options.domain;
obj['data-clerk-domain'] = options.domain;
}

return obj;
Expand Down

0 comments on commit e93b577

Please sign in to comment.