Skip to content

Commit 60aeeaf

Browse files
committed
undo linter breaking change
1 parent e9621a7 commit 60aeeaf

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

packages/builder/src/components/providers/identity/credentials.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,9 @@ export function openOauthWindow(
163163
const channel = new BroadcastChannel(broadcastChannelName);
164164

165165
// timeout after 5 minutes
166-
const timeout = setTimeout(
167-
() => {
168-
reject(new VerificationError("Authorization timed out"));
169-
},
170-
1000 * 60 * 5
171-
);
166+
const timeout = setTimeout(() => {
167+
reject(new VerificationError("Authorization timed out"));
168+
}, 1000 * 60 * 5);
172169

173170
channel.addEventListener("message", (event: any) => {
174171
const eventData = event.data as {

0 commit comments

Comments
 (0)