File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
packages/builder/src/components/providers/identity Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export const fetchChallengeCredential = async (
25
25
payload : {
26
26
address : payload . address ,
27
27
type : payload . type ,
28
+ signatureType : "EIP712" ,
28
29
} ,
29
30
}
30
31
) ;
@@ -156,9 +157,12 @@ export function openOauthWindow(
156
157
const channel = new BroadcastChannel ( broadcastChannelName ) ;
157
158
158
159
// timeout after 5 minutes
159
- const timeout = setTimeout ( ( ) => {
160
- reject ( new VerificationError ( "Authorization timed out" ) ) ;
161
- } , 1000 * 60 * 5 ) ;
160
+ const timeout = setTimeout (
161
+ ( ) => {
162
+ reject ( new VerificationError ( "Authorization timed out" ) ) ;
163
+ } ,
164
+ 1000 * 60 * 5
165
+ ) ;
162
166
163
167
channel . addEventListener ( "message" , ( event : any ) => {
164
168
const eventData = event . data as {
You can’t perform that action at this time.
0 commit comments