@@ -20,7 +20,7 @@ export const SigningIn: Story = {
20
20
isSigningIn : true ,
21
21
authMethods : {
22
22
password : { enabled : true } ,
23
- github : { enabled : true } ,
23
+ github : { enabled : true , default_provider_configured : false } ,
24
24
oidc : { enabled : false , signInText : "" , iconUrl : "" } ,
25
25
} ,
26
26
} ,
@@ -44,7 +44,7 @@ export const WithGithub: Story = {
44
44
args : {
45
45
authMethods : {
46
46
password : { enabled : true } ,
47
- github : { enabled : true } ,
47
+ github : { enabled : true , default_provider_configured : false } ,
48
48
oidc : { enabled : false , signInText : "" , iconUrl : "" } ,
49
49
} ,
50
50
} ,
@@ -54,7 +54,7 @@ export const WithOIDC: Story = {
54
54
args : {
55
55
authMethods : {
56
56
password : { enabled : true } ,
57
- github : { enabled : false } ,
57
+ github : { enabled : false , default_provider_configured : false } ,
58
58
oidc : { enabled : true , signInText : "" , iconUrl : "" } ,
59
59
} ,
60
60
} ,
@@ -64,7 +64,7 @@ export const WithOIDCWithoutPassword: Story = {
64
64
args : {
65
65
authMethods : {
66
66
password : { enabled : false } ,
67
- github : { enabled : false } ,
67
+ github : { enabled : false , default_provider_configured : false } ,
68
68
oidc : { enabled : true , signInText : "" , iconUrl : "" } ,
69
69
} ,
70
70
} ,
@@ -74,7 +74,7 @@ export const WithoutAny: Story = {
74
74
args : {
75
75
authMethods : {
76
76
password : { enabled : false } ,
77
- github : { enabled : false } ,
77
+ github : { enabled : false , default_provider_configured : false } ,
78
78
oidc : { enabled : false , signInText : "" , iconUrl : "" } ,
79
79
} ,
80
80
} ,
@@ -84,7 +84,7 @@ export const WithGithubAndOIDC: Story = {
84
84
args : {
85
85
authMethods : {
86
86
password : { enabled : true } ,
87
- github : { enabled : true } ,
87
+ github : { enabled : true , default_provider_configured : false } ,
88
88
oidc : { enabled : true , signInText : "" , iconUrl : "" } ,
89
89
} ,
90
90
} ,
0 commit comments