@@ -29,6 +29,7 @@ const AzureADLogin = ({ postLoginRedirect, label }: LoginProps) => (
29
29
id = "aad"
30
30
postLoginRedirect = { postLoginRedirect }
31
31
label = { label }
32
+ key = "aad"
32
33
/>
33
34
) ;
34
35
const FacebookLogin = ( { postLoginRedirect, label } : LoginProps ) => (
@@ -37,6 +38,7 @@ const FacebookLogin = ({ postLoginRedirect, label }: LoginProps) => (
37
38
id = "facebook"
38
39
postLoginRedirect = { postLoginRedirect }
39
40
label = { label }
41
+ key = "facebook"
40
42
/>
41
43
) ;
42
44
const TwitterLogin = ( { postLoginRedirect, label } : LoginProps ) => (
@@ -45,6 +47,7 @@ const TwitterLogin = ({ postLoginRedirect, label }: LoginProps) => (
45
47
id = "twitter"
46
48
postLoginRedirect = { postLoginRedirect }
47
49
label = { label }
50
+ key = "twitter"
48
51
/>
49
52
) ;
50
53
const GitHubLogin = ( { postLoginRedirect, label } : LoginProps ) => (
@@ -53,6 +56,7 @@ const GitHubLogin = ({ postLoginRedirect, label }: LoginProps) => (
53
56
id = "github"
54
57
postLoginRedirect = { postLoginRedirect }
55
58
label = { label }
59
+ key = "github"
56
60
/>
57
61
) ;
58
62
const GoogleLogin = ( { postLoginRedirect, label } : LoginProps ) => (
@@ -61,6 +65,7 @@ const GoogleLogin = ({ postLoginRedirect, label }: LoginProps) => (
61
65
id = "google"
62
66
postLoginRedirect = { postLoginRedirect }
63
67
label = { label }
68
+ key = "google"
64
69
/>
65
70
) ;
66
71
const AppleLogin = ( { postLoginRedirect, label } : LoginProps ) => (
@@ -69,6 +74,7 @@ const AppleLogin = ({ postLoginRedirect, label }: LoginProps) => (
69
74
id = "apple"
70
75
postLoginRedirect = { postLoginRedirect }
71
76
label = { label }
77
+ key = "apple"
72
78
/>
73
79
) ;
74
80
@@ -83,6 +89,7 @@ const CustomProviderLogin = ({
83
89
id = { id }
84
90
postLoginRedirect = { postLoginRedirect }
85
91
label = { label }
92
+ key = { id }
86
93
/>
87
94
) ;
88
95
@@ -94,6 +101,7 @@ const StaticWebAuthLogins = (props: LoginProviderProps) => {
94
101
< AzureADLogin
95
102
postLoginRedirect = { props . postLoginRedirect }
96
103
label = { props . label }
104
+ key = "aad"
97
105
/>
98
106
) ;
99
107
}
@@ -102,6 +110,7 @@ const StaticWebAuthLogins = (props: LoginProviderProps) => {
102
110
< AppleLogin
103
111
postLoginRedirect = { props . postLoginRedirect }
104
112
label = { props . label }
113
+ key = "apple"
105
114
/>
106
115
) ;
107
116
}
@@ -110,6 +119,7 @@ const StaticWebAuthLogins = (props: LoginProviderProps) => {
110
119
< FacebookLogin
111
120
postLoginRedirect = { props . postLoginRedirect }
112
121
label = { props . label }
122
+ key = "facebook"
113
123
/>
114
124
) ;
115
125
}
@@ -118,6 +128,7 @@ const StaticWebAuthLogins = (props: LoginProviderProps) => {
118
128
< TwitterLogin
119
129
postLoginRedirect = { props . postLoginRedirect }
120
130
label = { props . label }
131
+ key = "twitter"
121
132
/>
122
133
) ;
123
134
}
@@ -126,6 +137,7 @@ const StaticWebAuthLogins = (props: LoginProviderProps) => {
126
137
< GitHubLogin
127
138
postLoginRedirect = { props . postLoginRedirect }
128
139
label = { props . label }
140
+ key = "github"
129
141
/>
130
142
) ;
131
143
}
@@ -134,6 +146,7 @@ const StaticWebAuthLogins = (props: LoginProviderProps) => {
134
146
< GoogleLogin
135
147
postLoginRedirect = { props . postLoginRedirect }
136
148
label = { props . label }
149
+ key = "google"
137
150
/>
138
151
) ;
139
152
}
0 commit comments