Skip to content

Commit

Permalink
fix(clerk-js): Add missing sdkMetadata getter
Browse files Browse the repository at this point in the history
  • Loading branch information
panteliselef committed Nov 29, 2023
1 parent c0200b7 commit 1eee5ed
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;
}

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

get loaded(): boolean {
return this.#isReady;
}
Expand Down

0 comments on commit 1eee5ed

Please sign in to comment.