Skip to content

Commit

Permalink
fix(clerk-js): Add setter for sdkMetadata to address error
Browse files Browse the repository at this point in the history
  • Loading branch information
BRKalow committed Nov 30, 2023
1 parent d48d1aa commit b5c1940
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/clerk-js/src/core/clerk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,10 @@ export class Clerk implements ClerkInterface {
return Clerk.version;
}

set sdkMetadata(metadata: SDKMetadata) {
Clerk.sdkMetadata = metadata;
}

get sdkMetadata(): SDKMetadata {
return Clerk.sdkMetadata;
}
Expand Down

0 comments on commit b5c1940

Please sign in to comment.