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 e9621a7 commit 60aeeafCopy full SHA for 60aeeaf
packages/builder/src/components/providers/identity/credentials.ts
@@ -163,12 +163,9 @@ export function openOauthWindow(
163
const channel = new BroadcastChannel(broadcastChannelName);
164
165
// timeout after 5 minutes
166
- const timeout = setTimeout(
167
- () => {
168
- reject(new VerificationError("Authorization timed out"));
169
- },
170
- 1000 * 60 * 5
171
- );
+ const timeout = setTimeout(() => {
+ reject(new VerificationError("Authorization timed out"));
+ }, 1000 * 60 * 5);
172
173
channel.addEventListener("message", (event: any) => {
174
const eventData = event.data as {
0 commit comments