Skip to content

Commit 7418bf2

Browse files
committed
fix(clerk-react): Add new props/methods to StateProxy
1 parent b029a38 commit 7418bf2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/react/src/stateProxy.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export class StateProxy implements State {
4343
signIn: {
4444
status: 'needs_identifier' as const,
4545
availableStrategies: [],
46+
isTransferable: false,
4647

4748
create: this.gateMethod(target, 'create'),
4849
password: this.gateMethod(target, 'password'),
@@ -68,7 +69,10 @@ export class StateProxy implements State {
6869
signUp: {
6970
status: 'missing_requirements' as const,
7071
unverifiedFields: [],
72+
isTransferable: false,
7173

74+
create: this.gateMethod(target, 'create'),
75+
sso: this.gateMethod(target, 'sso'),
7276
password: this.gateMethod(target, 'password'),
7377
finalize: this.gateMethod(target, 'finalize'),
7478

0 commit comments

Comments
 (0)