We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b029a38 commit 7418bf2Copy full SHA for 7418bf2
packages/react/src/stateProxy.ts
@@ -43,6 +43,7 @@ export class StateProxy implements State {
43
signIn: {
44
status: 'needs_identifier' as const,
45
availableStrategies: [],
46
+ isTransferable: false,
47
48
create: this.gateMethod(target, 'create'),
49
password: this.gateMethod(target, 'password'),
@@ -68,7 +69,10 @@ export class StateProxy implements State {
68
69
signUp: {
70
status: 'missing_requirements' as const,
71
unverifiedFields: [],
72
73
74
+ create: this.gateMethod(target, 'create'),
75
+ sso: this.gateMethod(target, 'sso'),
76
77
finalize: this.gateMethod(target, 'finalize'),
78
0 commit comments