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 4becaf2 commit bd38703Copy full SHA for bd38703
packages/builder/src/components/providers/identity/credentials.ts
@@ -157,12 +157,9 @@ export function openOauthWindow(
157
const channel = new BroadcastChannel(broadcastChannelName);
158
159
// timeout after 5 minutes
160
- const timeout = setTimeout(
161
- () => {
162
- reject(new VerificationError("Authorization timed out"));
163
- },
164
- 1000 * 60 * 5
165
- );
+ const timeout = setTimeout(() => {
+ reject(new VerificationError("Authorization timed out"));
+ }, 1000 * 60 * 5);
166
167
channel.addEventListener("message", (event: any) => {
168
const eventData = event.data as {
0 commit comments