Skip to content

Commit b09d64b

Browse files
committed
fix
1 parent ddae4f4 commit b09d64b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react/src/isomorphicClerk.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -758,8 +758,8 @@ export class IsomorphicClerk implements IsomorphicLoadedClerk {
758758
return this.clerkjs?.apiKeys;
759759
}
760760

761-
__experimental_checkout = (...args: Parameters<Clerk['__experimental_checkout']>) => {
762-
return this.clerkjs?.__experimental_checkout(...args);
761+
checkout = (...args: Parameters<Clerk['checkout']>) => {
762+
return this.clerkjs?.checkout(...args);
763763
};
764764

765765
__unstable__setEnvironment(...args: any): void {

0 commit comments

Comments
 (0)